-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
100 lines (95 loc) · 2.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
"""Django uWSGI taskmanager setup."""
import os
from setuptools import find_packages, setup
import taskmanager
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
author_email="[email protected]",
author="Gabriele Giaccari, Gabriele Lucci, Guglielmo Celata, Paolo Melchiorre",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP",
],
description=taskmanager.__doc__,
include_package_data=True,
install_requires=[
"django>=1.11",
"uwsgi",
"file-read-backwards>=2.0.0",
],
extras_require={
"notifications": ["slack_sdk"],
"dev": [
"black",
"bump2version",
"flake8-bugbear",
"flake8-docstrings",
"flake8-isort",
"flake8",
"isort",
"mypy",
"pytz",
"pre-commit",
],
"docs": [
"sphinx",
"sphinx-django-command",
"sphinx-rtd-theme",
"sphinx-autobuild",
"pyembed-rst"
]
},
keywords=[
"async",
"cron",
"django",
"manager",
"spooler",
"task",
"timer",
"uwsgi",
],
license="AGPLv3 License",
long_description_content_type="text/markdown",
long_description="\n".join(
[
open("README.md").read(),
open("CHANGELOG.md").read(),
open("AUTHORS.md").read(),
open("LICENSE.md").read(),
]
),
name="django-uwsgi-taskmanager",
packages=find_packages(exclude=("tests", "demo")),
project_urls={
"Bug Reports": "https://github.com/openpolis/django-uwsgi-taskmanager/issues",
"Source Code": "https://github.com/openpolis/django-uwsgi-taskmanager",
},
python_requires="~=3.6",
setup_requires=["wheel"],
url="https://github.com/openpolis/django-uwsgi-taskmanager.git",
version=taskmanager.__version__,
zip_safe=False,
)