-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.37 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
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, 'parestlib', '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="parestlib",
version=version,
author="Cliff Kerr, Daniel Klein",
author_email="[email protected]",
description="Parameter estimation library",
long_description=long_description,
long_description_content_type="text/markdown",
url='http://covasim.org',
keywords=["parameter", "estimation", "posterior", "sampling", "stochastic", "optimization"],
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
install_requires=[
"matplotlib>=2.2.2",
"numpy>=1.10.1",
"scipy>=1.2.0",
"sciris>=0.15.6",
"statsmodels",
],
)