-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
29 lines (27 loc) · 999 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
from setuptools import setup, find_packages
# To generate install_requires from requirements.txt
# from pip.req import parse_requirements
# reqs = (str(ir.req) for ir in parse_requirements('requirements.txt'))
setup(
name='airflow',
version='0.1',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
scripts=['airflow/bin/airflow'],
install_requires=[
'celery', 'chartkick',
'flask', 'flask-admin', 'flask-bootstrap', 'flask-cache',
'flask-login', 'hive-thrift-py', 'jinja2',
'markdown', 'mysql-python',
'pandas',
'pygments', 'pyhive',
'python-dateutil', 'requests', 'setproctitle',
'sphinx', 'sphinx-rtd-theme', 'Sphinx-PyPI-upload',
'sqlalchemy', 'thrift', 'tornado'
],
author='Maxime Beauchemin',
author_email='maximebeauchemin@gmail.com',
url='https://github.com/mistercrunch/Airflow',
download_url='https://github.com/mistercrunch/Airflow/tarball/0.1',
)