-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (37 loc) · 1.26 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
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='data-tracking',
version='1.7.3',
zip_safe=False,
url='https://github.com/LREN-CHUV/data-tracking',
description='Extract meta-data from DICOM and NIFTI files',
long_description=long_description,
author='Mirco Nasuti',
author_email='mirco.nasuti@chuv.ch',
license='Apache 2.0',
packages=['data_tracking'],
keywords='mri dicom nifti',
install_requires=[
'apache-airflow==1.9.0',
'pydicom==0.9.9',
'sqlalchemy==1.2.5',
'python-magic>=0.4.12',
'nibabel>=2.1.0',
'psycopg2-binary==2.7.4'],
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',
)
)