forked from ryansmcgee/seirsplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 674 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import setuptools
# with open("README.md", "r") as fh:
# long_description = fh.read()
setuptools.setup(
packages=setuptools.find_packages(),
name="seirsplus",
version='0.1.4',
description='Models of SEIRS epidemic dynamics with extensions, including network-structured populations, testing, contact tracing, and social distancing.',
# long_description=long_description,
# long_description_content_type="text/markdown",
url="https://github.com/ryansmcgee/SEIRS-network-model",
author='Ryan Seamus McGee',
author_email='ryansmcgee@gmail.com',
license='MIT',
install_requires=['numpy', 'scipy', 'networkx'],
zip_safe=False)