forked from cfpb/django-flags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.32 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
50
51
52
from setuptools import find_packages, setup
long_description = open('README.md', 'r').read()
install_requires = [
'Django>=1.11,<2.2',
]
testing_extras = [
'mock>=2.0.0',
'coverage>=3.7.0',
'jinja2',
]
docs_extras = [
'mkdocs>=0.17',
'mkdocs-rtd-dropdown>=0.0.11',
'pymdown-extensions>=4.11',
]
setup(
name='django-flags',
url='https://github.com/cfpb/django-flags',
author='CFPB',
author_email='tech@cfpb.gov',
description='Feature flags for Django projects',
long_description=long_description,
long_description_content_type='text/markdown',
license='CC0',
version='4.1.0',
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
extras_require={
'testing': testing_extras,
'docs': docs_extras,
},
classifiers=[
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'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',
]
)