forked from genialis/resolwe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
100 lines (97 loc) · 3.26 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
import os.path
import setuptools
# Get the long description from README.
with open("README.rst", "r") as fh:
long_description = fh.read()
# Get package metadata from '__about__.py' file.
about = {}
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, "resolwe", "__about__.py"), "r") as fh:
exec(fh.read(), about)
setuptools.setup(
name=about["__title__"],
use_scm_version=True,
description=about["__summary__"],
long_description=long_description,
long_description_content_type="text/x-rst",
author=about["__author__"],
author_email=about["__email__"],
url=about["__url__"],
license=about["__license__"],
# Exclude tests from built/installed package.
packages=setuptools.find_packages(
exclude=["tests", "tests.*", "*.tests", "*.tests.*"]
),
package_data={
"resolwe": [
"flow/executors/requirements.txt",
"flow/migrations/*.sql",
"flow/static/flow/*.json",
"toolkit/processes/**.yml",
"toolkit/tools/**.py",
]
},
python_requires=">=3.6, <3.9",
install_requires=[
"asteval~=0.9.12",
"async-timeout~=3.0.0",
"channels~=2.4.0",
"channels_redis~=2.4.1",
"Django~=2.2.0",
"djangorestframework~=3.9.0",
"django-filter~=2.0.0",
"django-guardian~=1.5.0",
"django-versionfield2~=0.5.0",
"django-fernet-fields~=0.5",
"django-priority-batch~=2.1.0",
"elasticsearch-dsl~=6.3.1",
"Jinja2~=2.10.1",
"jsonschema~=2.6.0",
"plumbum~=1.6.6",
"psycopg2-binary~=2.8.0",
"PyYAML~=5.1",
"redis~=3.2.0",
"resolwe-runtime-utils~=2.1.0",
"shellescape~=3.4.1",
"Sphinx>=1.5.1, <1.7.0",
# XXX: Temporarily pin urllib to 1.24.x, since requests 2.21.0
# has requirement urllib3<1.25,>=1.21.1
"urllib3~=1.24.2",
"wrapt~=1.11.1",
],
extras_require={
"docs": ["sphinx_rtd_theme", "pyasn1>=0.4.8",],
"package": ["twine", "wheel"],
"test": [
"black",
"check-manifest",
"coverage>=4.2",
"flake8~=3.7.0",
"pydocstyle~=3.0.0",
"readme_renderer",
"setuptools_scm",
"testfixtures>=4.10.0",
"tblib>=1.3.0",
"isort~=4.3.12",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="resolwe dataflow django",
)