-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
35 lines (34 loc) · 1.22 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
from distutils.core import setup
setup(
name = "epipy",
version = "0.0.2.1",
author = "Caitlin Rivers",
author_email = "caitlin.rivers@gmail.com",
description = "Python tools for epidemiology.",
url = 'http://github.com/cmrivers/epipy',
download_url = 'https://github.com/cmrivers/epipy/tarball/0.0.2.1',
#install_requires = ['Numpy >= 1.6.2',
# 'Matplotlib >=1.2.0',
# 'Networkx >=1.6.0',
# 'Pandas >= 0.12.0',
# 'Scipy >= 0.13'],
license = "MIT",
keywords = "epidemiology",
packages = ['epipy'],
include_package_data=True,
package_data={'epipy': ['data/*.csv']},
scripts = ['epipy/basics.py',
'epipy/case_tree.py',
'epipy/checkerboard.py',
'epipy/data_generator.py',
'epipy/epicurve.py',
'epipy/analyses.py',
'epipy/or_plot.py'],
long_description='README.md',
classifiers=[
"Development Status :: Alpha",
"Programming Language :: Python :: 3.6",
"Natural Language :: English",
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics'],
)