forked from cfpb/django-flags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (45 loc) · 1.45 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
from setuptools import find_packages, setup
install_requires = ["Django>=1.11"]
testing_extras = [
"coverage>=3.7.0",
"django-debug-toolbar>=3.2,<4",
"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",
project_urls={
"Changelog": "https://cfpb.github.io/django-flags/releasenotes/",
"Documentation": "https://cfpb.github.io/django-flags/",
},
author="CFPB",
author_email="[email protected]",
description="Feature flags for Django projects",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="CC0",
version="5.0.12",
include_package_data=True,
packages=find_packages(),
python_requires=">=3.6",
install_requires=install_requires,
extras_require={"testing": testing_extras, "docs": docs_extras},
classifiers=[
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"License :: Public Domain",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)