Changeset View
Changeset View
Standalone View
Standalone View
python_modules/libraries/dagster-slack/setup.py
Show All 13 Lines | setup( | ||||
name="dagster-slack", | name="dagster-slack", | ||||
version=get_version(), | version=get_version(), | ||||
author="Elementl", | author="Elementl", | ||||
author_email="hello@elementl.com", | author_email="hello@elementl.com", | ||||
license="Apache-2.0", | license="Apache-2.0", | ||||
description="A Slack client resource for posting to Slack", | description="A Slack client resource for posting to Slack", | ||||
url="https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-slack", | url="https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-slack", | ||||
classifiers=[ | classifiers=[ | ||||
"Programming Language :: Python :: 2.7", | |||||
"Programming Language :: Python :: 3.6", | "Programming Language :: Python :: 3.6", | ||||
"Programming Language :: Python :: 3.7", | "Programming Language :: Python :: 3.7", | ||||
max: also 3.8 | |||||
"License :: OSI Approved :: Apache Software License", | "License :: OSI Approved :: Apache Software License", | ||||
"Operating System :: OS Independent", | "Operating System :: OS Independent", | ||||
], | ], | ||||
packages=find_packages(exclude=["test"]), | packages=find_packages(exclude=["test"]), | ||||
install_requires=[ | install_requires=[ | ||||
"dagster", | "dagster", | ||||
# Slack 2.x does not support Python 2 | # Note: Slack 2.x does not support Python 2 | ||||
Not Done Inline Actionsthis library doesn't support python 2o so that's fine, remove this comment max: this library doesn't support python 2o so that's fine, remove this comment | |||||
# https://github.com/slackapi/python-slackclient/wiki/Migrating-to-2.x#minimum-python-versions | # https://github.com/slackapi/python-slackclient/wiki/Migrating-to-2.x#minimum-python-versions | ||||
"slackclient<2.0.0", | "slackclient>=2,<3", | ||||
], | ], | ||||
zip_safe=False, | zip_safe=False, | ||||
) | ) |
also 3.8