21 строка
519 B
Python
21 строка
519 B
Python
import os
|
|
from pip.req import parse_requirements
|
|
from setuptools import setup
|
|
|
|
# Reading the requirements from pip's requirements.txt
|
|
reqs = (str(ir.req) for ir in parse_requirements('requirements.txt'))
|
|
|
|
setup(
|
|
name='airflow',
|
|
version='0.1',
|
|
packages=[
|
|
'airflow',
|
|
],
|
|
include_package_data=True,
|
|
scripts=['airflow/bin/airflow'],
|
|
install_requires=reqs,
|
|
author='Maxime Beauchemin',
|
|
author_email='maximebeauchemin@gmail.com',
|
|
url='https://github.com/mistercrunch/Airflow',
|
|
)
|