-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
64 lines (61 loc) · 1.97 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
import pathlib
from setuptools import find_packages
from distutils.core import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text("utf-8")
setup(
name="cv19index",
version="1.1.4",
description="COVID-19 Vulnerability Index",
long_description=README,
long_description_content_type="text/markdown",
url="https://cv19index.com",
author="Dave Decaprio",
author_email="[email protected]",
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Framework :: Jupyter",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(),
include_package_data=False,
zip_safe=False,
package_data={
"cv19index": [
"resources/logistic_regression/lr.p",
"resources/xgboost/input.csv.schema.json",
"resources/xgboost/model.pickle",
"resources/xgboost_all_ages/input.csv.schema.json",
"resources/xgboost_all_ages/model.pickle",
"resources/ccsrEdges.txt",
"resources/ccsrNodes.txt",
"resources/demographics.schema.json",
"resources/claims.schema.json",
]
},
entry_points={
"console_scripts": [
"cv19index=cv19index.predict:main",
# serve is required to be exposed by the sagemaker API.
"serve=cv19index.server:sagemaker_serve",
]
},
install_requires=[
"numpy>=1.17.4",
"pandas>=0.23.4",
"setuptools>=40.2.0",
"shap>=0.33",
"xgboost>=1.0.1",
"flask>=1.1.1",
"regex>=2020.2.20",
"xlrd >= 0.9.0"
],
)