-
Notifications
You must be signed in to change notification settings - Fork 189
/
setup.py
67 lines (64 loc) · 2.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -*- coding: utf-8 -*-
# from __future__ import unicode_literals
from setuptools import setup, find_packages
def readme():
# I really prefer Markdown to reStructuredText. PyPi does not. This allows me
# to have things how I'd like, but not throw complaints when people are trying
# to install the package and they don't have pypandoc or the README in the
# right place.
# From https://coderwall.com/p/qawuyq/use-markdown-readme-s-in-python-modules
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
with open('README.md') as f:
return f.read()
else:
return long_description
setup(name='healthcareai',
version='1.0',
maintainer='Levi Thatcher',
maintainer_email='[email protected]',
license='MIT',
description='Tools for healthcare machine learning',
keywords='machine learning healthcare data science',
long_description=readme(),
url='http://healthcare.ai',
packages=find_packages(),
install_requires=[
'matplotlib>=1.5.3',
'numpy>=1.11.2',
'pandas>=0.20.0',
'tabulate==0.7.7',
# 'pyodbc>=3.0.10',
'scipy>=0.18.1',
'scikit-learn>=0.18',
'imbalanced-learn>=0.2.1',
'sqlalchemy>=1.1.5', 'sklearn'
],
package_data={
'examples': ['*.py', '*.ipynb']
},
tests_require=[
'nose',
],
test_suite='nose.collector',
zip_safe=False,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True)