-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (64 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import subprocess
import pip
import sys
REQUIREMENTS = [
'Pygments',
'appnope',
'awscli',
'boto3',
'cachetools',
'docutils',
'et-xmlfile',
'google-api-python-client',
'google-auth',
'jdcal',
'jedi',
'knotr',
'networkx',
'numpy',
'oauth2client',
'openpyxl',
'pandas',
'parso',
'psycopg2',
'pytest',
'python-oauth2',
'pytz',
'pyyaml',
'requests',
'rsa',
'scikit-learn',
'scipy',
'slacker',
'sqlacodegen',
'sqlalchemy',
'sqlparse',
'statsmodels',
'toolz',
'tqdm',
'urllib3',
'uszipcode',
'xlrd',
'xmltodict',
'PureCloudPlatformClientV2',
]
setup(
name='flaskcovid',
version='0.1.0',
description="Flask Setup for COSMOS COVID-19 LP Project",
author="Nilabh Ohol",
author_email='[email protected]',
#url='',
packages=find_packages(),
package_dir={'flaskcovid':'flaskcovid'},
include_package_data=True,
install_requires=REQUIREMENTS,
zip_safe=False,
keywords='Flask Setup for COSMOS COVID-19 LP Project',
classifiers=[
'Programming Language :: Python :: 3.7',
]
)