-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
48 lines (36 loc) · 1.05 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
47
48
"""Setup."""
from setuptools import setup
package_name = "PatchSim"
description = "A system for simulating the metapopulation SEIR model"
with open("README.md", "r") as fh:
long_description = fh.read()
classifiers = """
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: Healthcare Industry
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
""".strip().split("\n")
setup(
name=package_name,
description=description,
author="Srini Venkatramanan",
author_email="srini@virginia.edu",
long_description=long_description,
long_description_content_type="text/markdown",
# packages=[package_name],
py_modules = ["patchsim"],
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=[
"numpy",
"pandas",
"click",
],
url="http://github.com/nssac/patchsim",
classifiers=classifiers
)