Skip to content

Commit

Permalink
Moving to setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Nov 6, 2014
1 parent 729da97 commit 9988e4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

3 changes: 3 additions & 0 deletions airflow/bin/airflow
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,9 @@ def initdb(args):


if __name__ == '__main__':



parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(help='sub-command help')

Expand Down
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from distutils.core import setup
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'))
Expand All @@ -10,12 +10,8 @@
version='0.1',
packages=[
'airflow',
'airflow.operators',
'airflow.executors',
'airflow.hooks',
'airflow.www',
'dags',
],
include_package_data=True,
scripts=['airflow/bin/airflow'],
install_requires=reqs,
author='Maxime Beauchemin',
Expand Down

0 comments on commit 9988e4d

Please sign in to comment.