-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (44 loc) · 1.44 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="epilearn",
version="0.0.15",
author="Emory-Melody",
maintainer='Emory-Melody',
author_email="[email protected]",
description="A Pytorch library for machine learning in epidemic modeling",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Emory-Melody/EpiLearn",
include_package_data=True,
install_requires = [
'matplotlib==3.9.1',
'numpy==1.26.4',
'scipy>=1.3.1',
'networkx==3.2.1',
'Pillow>=7.0.0',
'scikit_learn>=0.22.1',
'tqdm>=3.0',
'seaborn>=0.13.2',
'xgboost>=2.0.3',
'statsmodels>=0.14.2',
'streamlit==1.34.0',
'pyvis==0.3.2',
'plotly==5.22.0',
'fastdtw==0.3.4',
'einops==0.8.0'
],
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
],
license="MIT",
)