forked from som-shahlab/net_benefit_ascvd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 752 Bytes
/
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
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import find_packages, setup
setup(
name="net_benefit_ascvd",
version="0.0.1",
description="",
url="https://github.com/net_benefit_ascvd",
packages=find_packages(),
install_requires=[
"numpy",
"pandas>=1.0.0",
"torch>=1.6",
"pyyaml",
"pyarrow",
"scipy",
"sklearn",
"configargparse",
"matplotlib",
"sqlalchemy",
"dask>=2.14.0",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"pandas-gbq",
"pytest",
"tqdm",
"joblib"
],
)