File: setup.py

package info (click to toggle)
seirsplus 1.0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 888 kB
  • sloc: python: 3,984; sh: 11; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 674 bytes parent folder | download | duplicates (2)
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='1.0.9',
    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)