FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bolt-python/pyproject.toml at main · siddik7181/bolt-python · GitHub
siddik7181
/
bolt-python
Public
forked from
slackapi/bolt-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
bolt-python
/
pyproject.toml
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (49 loc) · 1.84 KB
Breadcrumbs
bolt-python
/
pyproject.toml
Copy path
File metadata and controls
58 lines (49 loc) · 1.84 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[
build-system
]
requires
= [
"
setuptools
"
,
"
wheel
"
]
build-backend
=
"
setuptools.build_meta
"
[
project
]
name
=
"
slack_bolt
"
dynamic
= [
"
version
"
,
"
readme
"
,
"
authors
"
]
description
=
"
The Bolt Framework for Python
"
license
= {
text
=
"
MIT
"
}
classifiers
= [
"
Programming Language :: Python :: 3.7
"
,
"
Programming Language :: Python :: 3.8
"
,
"
Programming Language :: Python :: 3.9
"
,
"
Programming Language :: Python :: 3.10
"
,
"
Programming Language :: Python :: 3.11
"
,
"
Programming Language :: Python :: 3.12
"
,
"
Programming Language :: Python :: 3.13
"
,
"
Programming Language :: Python :: Implementation :: CPython
"
,
"
License :: OSI Approved :: MIT License
"
,
"
Operating System :: OS Independent
"
,
]
requires-python
=
"
>=3.7
"
dependencies
= [
"
slack_sdk>=3.35.0,<4
"
]
[
project
.
urls
]
Documentation
=
"
https://docs.slack.dev/tools/bolt-python/
"
[
tool
.
setuptools
.
packages
.
find
]
include
= [
"
slack_bolt*
"
]
[
tool
.
setuptools
.
dynamic
]
version
= {
attr
=
"
slack_bolt.version.__version__
"
}
readme
= {
file
= [
"
README.md
"
],
content-type
=
"
text/markdown
"
}
[
tool
.
distutils
.
bdist_wheel
]
universal
=
true
[
tool
.
black
]
line-length
=
125
[
tool
.
pytest
.
ini_options
]
testpaths
= [
"
tests
"
]
log_file
=
"
logs/pytest.log
"
log_file_level
=
"
DEBUG
"
log_format
=
"
%(asctime)s %(levelname)s %(message)s
"
log_date_format
=
"
%Y-%m-%d %H:%M:%S
"
filterwarnings
= [
"
ignore:
\"
@coroutine
\"
decorator is deprecated since Python 3.8, use
\"
async def
\"
instead:DeprecationWarning
"
,
"
ignore:The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.:DeprecationWarning
"
,
"
ignore:Unknown config option. asyncio_mode:pytest.PytestConfigWarning
"
,
#
ignore warning when asyncio_mode is set but pytest-asyncio is not installed
]
asyncio_mode
=
"
auto
"
[
tool
.
mypy
]
files
=
"
slack_bolt/
"
force_union_syntax
=
true
warn_unused_ignores
=
true
Back
|
FazBrowse Home
|
New Git URL