-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
70 lines (65 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "slackblocks"
version = "1.0.11"
description = "Python wrapper for the Slack Blocks API"
authors = [
"Nicholas Lambourne <[email protected]>",
]
maintainers = [
"Nicholas Lambourne <[email protected]>",
]
homepage = "https://github.com/nicklambourne/slackblocks"
repository = "https://github.com/nicklambourne/slackblocks"
license = "MIT"
readme = "README.md"
keywords = [
"slackblocks",
"slack",
"messaging",
"message generation",
"slack blocks",
"blocks",
]
classifiers=[
"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",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
"Topic :: Communications :: Chat"
]
exclude = ["test/**", "docs/**"]
[tool.poetry.dependencies]
python = ">=3.8.0"
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
flake8 = "^5.0.4"
flake8-pyproject = "^1.2.3"
pytest = "^8.0.0"
slackclient = "^2.9.4"
twine = "^4.0.2"
wheel = "^0.42.0"
[tool.poetry.group.docs.dependencies]
mike="^2.0.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.6"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
mkdocstrings-python = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
exclude = [".venv", "./build", "./dist", ".eggs", ".git"]
max-line-length = 100
extend-ignore = """
BLK100
"""
per-file-ignores = [
"slackblocks/__init__.py:F401",
"slackblocks/rich_text/__init__.py:F401",
"slackblocks/rich_text/objects.py:W605",
]