X Tutup
#!/usr/bin/env python import os import setuptools here = os.path.abspath(os.path.dirname(__file__)) __version__ = None exec(open(f"{here}/slack_bolt/version.py").read()) with open(f"{here}/README.md", "r") as fh: long_description = fh.read() test_dependencies = [ "pytest>=5,<6", "pytest-asyncio<1", # for async "aiohttp>=3,<4", # for async "black==19.10b0", "pytype", ] setuptools.setup( name="slack_bolt", version=__version__, license="MIT", author="Slack Technologies, Inc.", author_email="opensource@slack.com", description="The Bolt Framework for Python", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/slackapi/bolt-python", packages=setuptools.find_packages( exclude=["samples", "integration_tests", "tests", "tests.*",] ), include_package_data=True, # MANIFEST.in install_requires=["slack_sdk==3.0.0a4",], setup_requires=["pytest-runner==5.2"], tests_require=test_dependencies, test_suite="tests", extras_require={ # pip install -e ".[async]" "async": [ # async features heavily depends on aiohttp "aiohttp>=3,<4", ], # pip install -e ".[adapter]" "adapter": [ # any of async ones "aiohttp>=3,<4", # used only under src/slack_bolt/adapter "boto3<=2", "moto<=2", # For AWS tests "bottle>=0.12,<1", "chalice>=1,<2", "click>=7,<8", # for chalice "CherryPy>=18,<19", "Django>=3,<4", "falcon>=2,<3", "fastapi<1", "Flask>=1,<2", "pyramid>=1,<2", "sanic>=20,<21", "starlette>=0.13,<1", "requests>=2,<3", # For starlette's TestClient "tornado>=6,<7", # server "uvicorn<1", "gunicorn>=20,<21", ], # pip install -e ".[testing]" "testing": test_dependencies, }, classifiers=[ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires=">=3.6", )
X Tutup