Changeset View
Changeset View
Standalone View
Standalone View
python_modules/automation/setup.py
Show All 17 Lines | setup( | ||||
packages=find_packages(exclude=["test"]), | packages=find_packages(exclude=["test"]), | ||||
install_requires=[ | install_requires=[ | ||||
"autoflake", | "autoflake", | ||||
"boto3==1.9.*", | "boto3==1.9.*", | ||||
"click>=6.7", | "click>=6.7", | ||||
"dagster", | "dagster", | ||||
"packaging==18.0", | "packaging==18.0", | ||||
"pandas", | "pandas", | ||||
'pydantic; python_version >="3"', | |||||
'pytablereader; python_version >="3"', | 'pytablereader; python_version >="3"', | ||||
"requests", | "requests", | ||||
"slackclient>=2,<3", | "slackclient>=2,<3", | ||||
"twine==1.15.0", | "twine==1.15.0", | ||||
"virtualenv==16.5.0", | "virtualenv==16.5.0", | ||||
"wheel==0.33.6", | "wheel==0.33.6", | ||||
], | ], | ||||
entry_points={ | entry_points={ | ||||
"console_scripts": [ | "console_scripts": [ | ||||
"dagster-docs = automation.docs.cli:main", | "dagster-docs = automation.docs.cli:main", | ||||
"dagster-image = automation.docker.cli:main", | "dagster-image = automation.docker.cli:main", | ||||
"dagster-release = automation.release.cli:main", | "dagster-release = automation.release.cli:main", | ||||
"dagster-scaffold = automation.scaffold.cli:main", | "dagster-scaffold = automation.scaffold.cli:main", | ||||
"dagster-helm = automation.helm.cli:main", | |||||
] | ] | ||||
}, | }, | ||||
) | ) |