-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (40 loc) · 1.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
from setuptools import setup
from os import path
import codecs
here = path.abspath(path.dirname(__file__))
with codecs.open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='i2b2-import',
version='1.6.3',
zip_safe=False,
url='https://github.com/LREN-CHUV/i2b2-import',
description='Import data into an I2B2 DB schema',
long_description=long_description,
author='Mirco Nasuti',
author_email='mirco.nasuti@chuv.ch',
license='Apache 2.0',
packages=['i2b2_import'],
extras_require={
'test': ['unittest', 'nose'],
},
install_requires=['apache-airflow==1.9.0',
'sqlalchemy==1.2.5',
'psycopg2-binary==2.7.4',
'pandas',
'defusedxml',
'xlrd'],
include_package_data=True,
package_data={'': ['default_data/default_structures_mapping.csv']},
classifiers=(
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: Unix',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
)
)