-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (46 loc) · 1.6 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "slack_cli_hooks"
dynamic = ["version", "readme", "dependencies"]
description = "The Slack CLI contract implementation for Bolt Python"
license = { text = "MIT" }
authors = [{ name = "Slack Technologies, LLC", email = "[email protected]" }]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Office/Business",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
"Source Code" = "https://github.com/slackapi/python-slack-hooks"
[tool.setuptools.packages.find]
include = ["slack_cli_hooks*"]
[tool.setuptools.dynamic]
version = { attr = "slack_cli_hooks.version.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
dependencies = { file = ["requirements.txt"] }
[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"
[tool.mypy]
files = "slack_cli_hooks/"
force_union_syntax = true
warn_unused_ignores = true