2015-01-15 21:03:10 +03:00
|
|
|
from setuptools import setup, find_packages
|
2014-10-12 19:44:06 +04:00
|
|
|
|
2015-01-23 08:31:57 +03:00
|
|
|
# Kept manually in sync with airflow.__version__
|
2015-02-18 23:22:35 +03:00
|
|
|
version = '0.3.2.1'
|
2014-10-12 19:44:06 +04:00
|
|
|
|
|
|
|
setup(
|
2014-10-15 05:28:29 +04:00
|
|
|
name='airflow',
|
2015-01-22 21:51:43 +03:00
|
|
|
description='Programmatically author, schedule and monitor data pipelines',
|
2015-01-23 08:31:57 +03:00
|
|
|
version=version,
|
2015-01-15 21:03:10 +03:00
|
|
|
packages=find_packages(),
|
2014-11-06 09:44:19 +03:00
|
|
|
include_package_data=True,
|
2015-01-17 01:53:33 +03:00
|
|
|
zip_safe=False,
|
2014-10-15 05:28:29 +04:00
|
|
|
scripts=['airflow/bin/airflow'],
|
2015-01-17 20:21:51 +03:00
|
|
|
install_requires=[
|
2015-02-14 12:01:14 +03:00
|
|
|
'boto>=2.36.0',
|
2015-01-21 09:23:14 +03:00
|
|
|
'celery>=3.1.17',
|
|
|
|
'chartkick>=0.4.2',
|
2015-01-29 09:14:32 +03:00
|
|
|
'dill>=0.2.2',
|
2015-01-21 09:23:14 +03:00
|
|
|
'flask>=0.10.1',
|
|
|
|
'flask-admin>=1.0.9',
|
|
|
|
'flask-bootstrap>=3.3.0.1',
|
|
|
|
'flask-cache>=0.13.1',
|
|
|
|
'flask-login>=0.2.11',
|
2015-01-31 08:35:24 +03:00
|
|
|
'flower>=0.7.3',
|
2015-01-21 09:23:14 +03:00
|
|
|
'hive-thrift-py>=0.0.1',
|
|
|
|
'jinja2>=2.7.3',
|
|
|
|
'librabbitmq>=1.6.1',
|
|
|
|
'markdown>=2.5.2',
|
|
|
|
'mysql-python>=1.2.5',
|
|
|
|
'pandas>=0.15.2',
|
|
|
|
'pygments>=2.0.1',
|
2015-01-22 21:51:43 +03:00
|
|
|
'pysmbclient>=0.1.3',
|
2015-01-21 09:23:14 +03:00
|
|
|
'pyhive>=0.1.3',
|
2015-02-17 10:42:25 +03:00
|
|
|
'pyhs2>=0.6.0',
|
2015-01-21 09:23:14 +03:00
|
|
|
'python-dateutil>=2.3',
|
|
|
|
'requests>=2.5.1',
|
|
|
|
'setproctitle>=1.1.8',
|
|
|
|
'snakebite>=2.4.13',
|
|
|
|
'sphinx>=1.2.3',
|
2015-02-01 18:57:29 +03:00
|
|
|
'sphinx-argparse>=0.1.13',
|
2015-01-21 09:23:14 +03:00
|
|
|
'sphinx-rtd-theme>=0.1.6',
|
|
|
|
'Sphinx-PyPI-upload>=0.2.1',
|
|
|
|
'sqlalchemy>=0.9.8',
|
|
|
|
'thrift>=0.9.2',
|
2015-01-22 21:51:43 +03:00
|
|
|
'tornado>=4.0.2',
|
2015-01-17 20:21:51 +03:00
|
|
|
],
|
2014-10-12 19:44:06 +04:00
|
|
|
author='Maxime Beauchemin',
|
|
|
|
author_email='maximebeauchemin@gmail.com',
|
2014-10-15 05:28:29 +04:00
|
|
|
url='https://github.com/mistercrunch/Airflow',
|
2015-01-22 21:51:43 +03:00
|
|
|
download_url=(
|
2015-01-23 08:31:57 +03:00
|
|
|
'https://github.com/mistercrunch/Airflow/tarball/' + version),
|
2014-10-12 19:44:06 +04:00
|
|
|
)
|