-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (43 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
with open("hiptool/version.py", "r") as f:
version_file = {}
exec(f.read(), version_file)
version = version_file["version"]
try:
from pypandoc import convert
except ImportError:
import io
def convert(filename, fmt):
with io.open(filename, encoding='utf-8') as fd:
return fd.read()
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GPLv3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
]
setup(
name='hiptool',
version=version,
author='Cliff Kerr, George Chadderdon',
author_email='[email protected]',
description='Health Interventions Prioritization Tool',
url='http://github.com/sciris/hiptool',
keywords=['prioritization', 'health services', 'UHC'],
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
install_requires=[
'scirisweb',
'matplotlib>=1.4.2',
'numpy>=1.10.1',
],
)