-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (38 loc) · 1.37 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
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
_version = '2.4.3'
_packages = find_packages(exclude=["docs", "*.tests", "*.tests.*", "tests.*", "tests"])
_short_description = ("pylint-common is a Pylint plugin to improve Pylint "
"error analysis of the standard Python library")
_classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'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.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
)
_install_requires = [
'apache-airflow==1.9.0',
'data-tracking>=1.7.2'
]
setup(
name="airflow_imaging_plugins",
description="Airflow plugins to support Neuroimaging tasks.",
author='LREN CHUV',
author_email='ludovic.claude@chuv.ch',
url='https://github.com/LREN-CHUV/airflow-imaging-plugins',
license='Apache License 2.0',
zip_safe=False,
version=_version,
packages=_packages,
classifiers=_classifiers,
keywords='airflow mri provenance',
install_requires=_install_requires
)