-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
138 lines (126 loc) · 4.13 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env python
try:
from setuptools import find_packages, setup
except ImportError:
from distutils.core import setup
# Hack to prevent "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when setup.py exits
# (see http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing # noqa
except ImportError:
pass
# See https://stackoverflow.com/a/24517154
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path("omap/__init__.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
__version__ = main_ns["__version__"]
install_requires = [
"Django>=3.0,<3.3",
"django-tailwind==3.1.1",
# "django-modelcluster>=5.2,<6.0",
# "django-taggit>=1.0,<2.0",
# "django-treebeard>=4.2.0,<5.0,!=4.5",
# "djangorestframework>=3.11.1,<4.0",
# "django-filter>=2.2,<22",
# "draftjs_exporter>=2.1.5,<3.0",
# "Pillow>=4.0.0,<9.0.0",
# "beautifulsoup4>=4.8,<4.10",
# "html5lib>=0.999,<2",
# "Willow>=1.4,<1.5",
# "requests>=2.11.1,<3.0",
# "l18n>=2018.5",
# "xlsxwriter>=1.2.8,<4.0",
# "tablib[xls,xlsx]>=0.14.0",
# "anyascii>=0.1.5",
# "telepath>=0.1.1,<1",
]
# Testing dependencies
testing_extras = [
# # Required for running the tests
# 'python-dateutil>=2.7',
# 'pytz>=2014.7',
# 'elasticsearch>=5.0,<6.0',
# 'Jinja2>=2.11,<3.0',
# 'boto3>=1.16,<1.17',
# 'freezegun>=0.3.8',
# 'openpyxl>=2.6.4',
# 'Unidecode>=0.04.14,<2.0',
# 'azure-mgmt-cdn>=5.1,<6.0',
# 'azure-mgmt-frontdoor>=0.3,<0.4',
#
# # For coverage and PEP8 linting
# 'coverage>=3.7.0',
# 'flake8>=3.6.0',
# 'isort==5.6.4', # leave this pinned - it tends to change rules between patch releases
# 'flake8-blind-except==0.1.1',
# 'flake8-print==2.0.2',
# 'doc8==0.8.1',
#
# # For templates linting
# 'jinjalint>=0.5',
#
# # Pipenv hack to fix broken dependency causing CircleCI failures
# 'docutils==0.15',
#
# # django-taggit 1.3.0 made changes to verbose_name which affect migrations;
# # the test suite migrations correspond to >=1.3.0
# 'django-taggit>=1.3.0,<2.0',
#
# # for validating string formats in .po translation files
# 'polib>=1.1,<2.0',
]
# Documentation dependencies
documentation_extras = [
# 'pyenchant>=3.1.1,<4',
# 'sphinxcontrib-spelling>=5.4.0,<6',
"Sphinx>=1.5.2",
# 'sphinx-autobuild>=0.6.0',
# 'sphinx-wagtail-theme==5.0.4',
# 'recommonmark>=0.7.1',
]
setup(
name="omap",
version=__version__,
description="Open Machinery Plattform",
author="pragmatic industries GmbH + contributors",
author_email="[email protected]", # For support queries, please see https://docs.wagtail.io/en/stable/support.html
url="https://pragmaticindustries.de/",
packages=find_packages(),
include_package_data=True,
license="Apache 2.0",
long_description="Open Machinery Platform (short OMAP) is an open source \
platform to manage machines / assets and use their data.",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
],
python_requires=">=3.7",
install_requires=install_requires,
extras_require={"testing": testing_extras, "docs": documentation_extras},
# entry_points="""
# [console_scripts]
# wagtail=wagtail.bin.wagtail:main
# """,
zip_safe=False,
# cmdclass={
# 'sdist': sdist,
# 'bdist_egg': check_bdist_egg,
# 'assets': assets,
# },
)