forked from HealthCatalyst/healthcareai-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.55 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.55 KB
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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='healthcareai-py',
version='0.1.7',
maintainer='Levi Thatcher',
maintainer_email='levi.thatcher@healthcatalyst.com',
license='MIT',
description='Tools for healthcare machine learning',
long_description=readme(),
url='http://healthcare.ai/',
packages=[
'healthcareai',
],
install_requires=[
'matplotlib>=1.5.3',
'numpy>=1.11.2+mkl',
'pandas>=0.19.0',
'pyodbc>=3.0.10',
'scipy>=0.18.1',
'scikit-learn>=0.18',
],
tests_require=[
'nose',
],
test_suite='nose.collector',
zip_safe=False,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"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 :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True)