-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 993 Bytes
/
setup.py
File metadata and controls
38 lines (37 loc) · 993 Bytes
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
from setuptools import setup, find_packages
PROJECT_NAME = 'flask'
VERSION = '0.0.1'
setup(name=PROJECT_NAME,
version=VERSION,
entry_points={
'console_scripts': [
'manager = manager:main'
]
},
license='MIT',
packages=find_packages(),
install_requires=[
'ujson==5.1.0',
'redis==4.2.1',
'requests==2.27.1',
'aiohttp==3.8.1',
'websocket-client==0.48.0',
'flask==2.0.3',
'greenlet==1.1.2',
'gevent==21.12.0',
'pandas==1.4.1',
'numpy==1.22.3',
'fire==0.4.0',
'python-crontab==2.6.0',
'sqlalchemy==1.4.29',
'joblib==1.1.0',
'psycopg2-binary==2.9.3',
'pytest==7.1.1',
'pytest-order==1.0.1',
'cryptography==3.4.7',
'flask-cors==3.0.10',
'simplejson==3.17.6',
'cos-python-sdk-v5==1.9.17',
],
zip_safe=False
)