-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
67 lines (60 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
65
66
import versioneer
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires=[
'flask',
'werkzeug>=0.15,<2.1',
'flask-restx',
'flask-cors',
'python-dateutil',
'flask-jwt-extended>=4'
]
extras_require={
'recommended': [
'nbconvert',
'ipython',
'numpy',
'pillow'
]
}
extras_require['all'] = sorted(set(sum(extras_require.values(), [])))
setup(
name='tranquilizer',
author='Albert DeFusco',
author_email='[email protected]',
description='Put your functions to REST',
url='https://github.com/AlbertDeFusco/tranquilizer',
license='BSD 3-clause',
platforms=['Windows', 'Mac OS X', 'Linux'],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=['tests']),
entry_points={
'console_scripts': [
'tranquilizer = tranquilizer.main:run'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"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 :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Framework :: Flask",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Environment :: Web Environment"
],
python_requires=">=3.6, <3.13",
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown'
)