-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 926 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 926 Bytes
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
import os
from distutils.core import setup
setup(
name = "pycho",
version = "0.1",
description = 'Python wrapper for Project Tycho',
author = "Caitlin Rivers",
author_email = "caitlin.rivers@gmail.com",
url = 'http://github.com/cmrivers/pycho',
#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 = ['pycho'],
include_package_data=True,
scripts = ['pycho/pycho.py'],
long_description='README.md',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 2.7",
"Natural Language :: English",
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics'],
)