forked from InstituteforDiseaseModeling/synthpops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.46 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
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",
]
setup(
name="synthpops",
version=version,
author="Dina Mistry",
author_email="[email protected]",
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', 'census', 'demography'],
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
install_requires=[
"sciris>=0.16.5",
"matplotlib",
"numpy",
"scipy",
"pandas",
"numba",
"networkx",
"cmocean",
"cmasher",
"seaborn",
"graphviz",
"pydot",
],
)