-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 861 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "blockkit"
version = "2.1.3"
authors = [{ name = "Dima Czernyszow", email = "imryche13@gmail.com" }]
description = "A fast way to build Block Kit interfaces in Python"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/imryche/blockkit"
Issues = "https://github.com/imryche/blockkit/issues"
[tool.ruff]
line-length = 88
extend-select = ["I", "UP", "ASYNC"]
extend-ignore = ["UP007"]
[tool.ruff.lint]
extend-select = ["I", "UP", "E501", "ASYNC"]
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"mkdocs-material>=9.6.14",
"mypy>=1.15.0",
"pytest>=8.3.5",
]