forked from XanderJC/medkit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 965 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="medkit_learn",
version="0.1.1",
author="Alex J. Chan",
author_email="[email protected]",
description="Medical sequential decision making simulation tools.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/XanderJC/medkit-learn",
packages=setuptools.find_packages(),
package_data={'': ['*.pth']},
include_package_data=True,
install_requires=[
"torch >= 1.7.0",
"tqdm >= 4.54.1",
"numpy >= 1.19.1",
"pandas >= 1.1.2",
"opacus >= 0.13.0",
"gym >= 0.17.2",
"scikit-learn >= 0.24.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)