-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (40 loc) · 1.24 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyepidemics", # Replace with your own username
version="0.0.10",
author = 'Theo Alves Da Costa',
author_email = '[email protected]',
description = 'Open source epidemiological modeling in Python',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ekimetrics/pyepidemics",
packages=setuptools.find_packages(),
install_requires=[
"scipy==1.4.1",
"numpy==1.18.4",
"pandas>=1.0.0",
"scikit_learn==0.23.1",
"matplotlib==3.1.3",
"optuna==1.3.0",
"pydeck==0.3.0b2",
"requests==2.22.0",
"plotly==4.6.0",
"tqdm==4.46.0",
"statsmodels==0.10.1",
"networkx==2.3",
"PyYAML==5.3.1",
"xlrd >= 1.0.0",
],
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
'Documentation': 'https://ekimetrics.github.io/pyepidemics/',
},
python_requires='>=3.6',
)