-
Notifications
You must be signed in to change notification settings - Fork 151
/
setup.py
51 lines (48 loc) · 1.35 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
"""Setup file for chime
"""
__version__ = "1.1.5" # update VERSION in constants.py
__author__ = "Predictive Healthcare @ Penn Medicine"
from setuptools import setup, find_packages
setup(
name="penn_chime",
version=__version__,
author=__author__,
author_email="",
description="COVID-19 Hospital Impact Model for Epidemics",
url="https://github.com/CodeForPhilly/chime",
project_urls={
"Bug Reports": "https://github.com/CodeForPhilly/chime/issues",
"Source": "https://github.com/CodeForPhilly/chime",
"Documentation": "https://codeforphilly.github.io/chime/",
},
package_dir={'': 'src'},
packages=find_packages(where='src', exclude=('tests')),
install_requires=[
"altair",
"black",
"gspread",
"gunicorn",
"dash",
"dash_daq",
"dash_bootstrap_components",
"numpy",
"pandas",
"pytest",
"pyyaml",
"streamlit",
"gspread",
"oauth2client",
"python-i18n"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
entry_points={
'console_scripts': ['penn_chime=penn_chime.cli:main'],
},
keywords=[],
include_package_data=True,
)