-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (23 loc) · 840 Bytes
/
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
import setuptools
setuptools.setup(
name="icd",
version="0.1.3",
url="https://github.com/mark-hoffmann/icd",
author="Mark Hoffmann",
author_email="markkhoffmann@gmail.com",
description="Tools for working with icd codes and comorbidities",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=['pandas'],
package_data={'icd': ['comorbidity_mappings/*.json']},
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)