forked from cfpb/wagtail-flags
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (44 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import find_packages, setup
long_description = open('README.md', 'r').read()
install_requires = [
'wagtail>=1.13,<2.5',
'django-flags>=4.2,<5.0'
]
testing_extras = [
'coverage>=3.7.0',
]
setup(
name='wagtail-flags',
url='https://github.com/cfpb/wagtail-flags',
author='CFPB',
author_email='[email protected]',
description='Feature flags for Wagtail sites',
long_description=long_description,
long_description_content_type='text/markdown',
license='CC0',
version='4.1.0b2',
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
extras_require={
'testing': testing_extras,
},
classifiers=[
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Wagtail',
'Framework :: Wagtail :: 1',
'Framework :: Wagtail :: 2',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'License :: Public Domain',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)