-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 911 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 911 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
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pumphandle',
version='0.0.2',
description='Tools for computational epidemiology',
long_description=readme(),
keywords ='epidemiology',
classifiers=['Development Status :: 1 - Planning',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
url='https://github.com/elofgren/pumphandle',
author='Eric Lofgren',
author_email='Eric.Lofgren@gmail.com',
license='MIT',
packages=['pumphandle'],
requires=['requests',])