Skip to content

Commit cb3338e

Browse files
author
Nick Canzoneri
committed
Add a setup.py and move the cli file so that it is easily installed by the package
1 parent 16c17a8 commit cb3338e

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="penn_chime",
8+
version="1.0.0",
9+
author="Predictive Healthcare @ Penn Medicine",
10+
description="COVID-19 Hospital Impact Model for Epidemics",
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
13+
url="https://github.com/CodeForPhilly/chime",
14+
package_dir={'': 'src'},
15+
packages=setuptools.find_namespace_packages(where='src', exclude=('tests')),
16+
install_requires=['pandas','numpy','altair','streamlit'],
17+
classifiers=[
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: OS Independent",
21+
],
22+
python_requires='>=3.6',
23+
entry_points = {
24+
'console_scripts': ['penn_chime=penn_chime.cli:main'],
25+
}
26+
)
File renamed without changes.

0 commit comments

Comments
 (0)