|
18 | 18 | "aiohttp>=3,<4", # for async |
19 | 19 | "Flask-Sockets>=0.2,<1", |
20 | 20 | "Werkzeug<2", # TODO: support Flask 2.x |
21 | | - "black==20.8b1", |
| 21 | + "black==21.5b1", |
22 | 22 | ] |
23 | 23 |
|
24 | 24 | setuptools.setup( |
|
32 | 32 | long_description_content_type="text/markdown", |
33 | 33 | url="https://github.com/slackapi/bolt-python", |
34 | 34 | packages=setuptools.find_packages( |
35 | | - exclude=["examples", "integration_tests", "tests", "tests.*",] |
| 35 | + exclude=[ |
| 36 | + "examples", |
| 37 | + "integration_tests", |
| 38 | + "tests", |
| 39 | + "tests.*", |
| 40 | + ] |
36 | 41 | ), |
37 | 42 | include_package_data=True, # MANIFEST.in |
38 | | - install_requires=["slack_sdk>=3.5.0,<4",], |
| 43 | + install_requires=[ |
| 44 | + "slack_sdk>=3.5.0,<4", |
| 45 | + ], |
39 | 46 | setup_requires=["pytest-runner==5.2"], |
40 | 47 | tests_require=test_dependencies, |
41 | 48 | test_suite="tests", |
|
53 | 60 | # used only under src/slack_bolt/adapter |
54 | 61 | "boto3<=2", |
55 | 62 | # TODO: Upgrade to v2 |
56 | | - "moto<2", # For AWS tests |
| 63 | + "moto<2", # For AWS tests |
57 | 64 | "bottle>=0.12,<1", |
58 | 65 | "boddle>=0.2,<0.3", # For Bottle app tests |
59 | 66 | "chalice>=1.22.4,<2", |
|
73 | 80 | "uvicorn<1", |
74 | 81 | "gunicorn>=20,<21", |
75 | 82 | # Socket Mode 3rd party implementation |
76 | | - "websocket_client>=0.57,<1" |
| 83 | + "websocket_client>=0.57,<1", |
77 | 84 | ], |
78 | 85 | # pip install -e ".[testing]" |
79 | 86 | "testing": test_dependencies, |
|
0 commit comments