forked from InstituteforDiseaseModeling/synthpops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (57 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
Setup script to install SynthPops and its dependencies.
Run 'python setup.py develop' to install.
"""
import os
import runpy
from setuptools import setup, find_packages
# Get version
cwd = os.path.abspath(os.path.dirname(__file__))
versionpath = os.path.join(cwd, 'synthpops', 'version.py')
version = runpy.run_path(versionpath)['__version__']
# Get the documentation
with open(os.path.join(cwd, 'README.md'), "r") as fh:
long_description = fh.read()
CLASSIFIERS = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
setup(
name="synthpops",
version=version,
author="Dina Mistry, Cliff Kerr, Meikang Wu, Mary Fisher, and Daniel Klein on behalf of the IDM COVID-19 Response Team",
author_email="covid@idmod.org",
description="Synthetic contact network generation",
long_description=long_description,
long_description_content_type="text/markdown",
url='http://synthpops.org',
keywords=["human contact networks", "synthetic population", "age mixing patterns", "census", "demography"],
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
install_requires=[
"sciris>=1.0.0",
"covasim>=2.0.0",
"matplotlib>=3.3.0",
"numpy",
"scipy",
"pandas>=1.2.3",
"numba",
"networkx>=2.3",
"cmocean",
"cmasher",
"seaborn",
"graphviz",
"pydot",
"jsonobject",
"jsbeautifier"
],
)