Changeset View
Changeset View
Standalone View
Standalone View
python_modules/automation/setup.py
Show All 14 Lines | classifiers=[ | ||||
"Operating System :: OS Independent", | "Operating System :: OS Independent", | ||||
], | ], | ||||
packages=find_packages(exclude=["test"]), | packages=find_packages(exclude=["test"]), | ||||
install_requires=[ | install_requires=[ | ||||
"autoflake", | "autoflake", | ||||
"boto3", | "boto3", | ||||
"click>=6.7", | "click>=6.7", | ||||
"dagster", | "dagster", | ||||
"dagster-graphql", | |||||
"packaging==18.0", | "packaging==18.0", | ||||
"pandas", | "pandas", | ||||
"pytablereader", | "pytablereader", | ||||
"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", | ||||
"urllib3==1.25.9", | "urllib3==1.25.9", | ||||
# resolve issue with aiohttp pin of chardet for aiohttp<=3.7.3, req'd by slackclient | # resolve issue with aiohttp pin of chardet for aiohttp<=3.7.3, req'd by slackclient | ||||
# https://github.com/dagster-io/dagster/issues/3539 | # https://github.com/dagster-io/dagster/issues/3539 | ||||
"chardet<4.0", | "chardet<4.0", | ||||
], | ], | ||||
entry_points={ | entry_points={ | ||||
"console_scripts": [ | "console_scripts": [ | ||||
"dagster-buildkite = automation.buildkite.cli:main", | "dagster-buildkite = automation.buildkite.cli:main", | ||||
"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-graphql-client = automation.graphql.python_client.cli:main", | |||||
] | ] | ||||
}, | }, | ||||
) | ) |