-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·64 lines (58 loc) · 1.86 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
#!/usr/bin/env python3
from setuptools import setup
from setuptools import find_packages
from trionyx import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'Trionyx',
packages = find_packages(include=['trionyx', 'trionyx.*']),
include_package_data=True,
scripts=['trionyx/bin/trionyx'],
version = __version__,
description = 'Trionyx is an application framework for managing data and processes',
long_description=readme(),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Framework :: Django',
],
author = 'Maikel Martens',
author_email = '[email protected]',
license='GPL3',
url = 'https://github.com/krukas/Trionyx',
download_url = 'https://github.com/krukas/Trionyx/releases/tag/{}'.format(__version__),
keywords = ['Django', 'Trionyx', 'framework', 'admin', 'data', 'processes', 'application', 'stack'],
python_requires='~=3.6',
install_requires=[
"Django >= 3.2.0, < 3.3",
# Django apps
'django-crispy-forms >= 1.11.2, < 1.12',
'django_compressor >= 2.4.0, < 2.5',
'django-watson >= 1.5.0, < 1.6',
'djangorestframework >= 3.12.0, < 3.13',
'uritemplate >= 3.0.1, < 3.1',
'Babel >= 2.9.0, < 2.10',
'celery >= 4.4.0, < 4.5',
'Pillow>=5.0.0',
'PyYAML==5.4.1',
'docutils>=0.14, < 0.17',
],
extras_require={
'dev': [
'colorlog',
'django-extensions',
'django-debug-toolbar',
'Werkzeug',
'coverage',
'flake8',
'pydocstyle',
'mypy==0.812',
'django-stubs >= 1.8.0, < 1.9.0',
'ipython',
'Sphinx',
'sphinx_rtd_theme',
]
},
)