-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
pyproject.toml
88 lines (76 loc) · 1.73 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "blinker"
version = "1.9.0"
description = "Fast, simple object-to-object and broadcast signaling"
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [{ name = "Jason Kirtland" }]
maintainers = [{ name = "Pallets Ecosystem", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Typing :: Typed",
]
requires-python = ">=3.8"
[project.urls]
Documentation = "https://blinker.readthedocs.io"
Source = "https://github.com/pallets-eco/blinker/"
Chat = "https://discord.gg/pallets"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = [
"docs/",
"requirements/",
"tests/",
"CHANGES.rst",
"tox.ini",
]
exclude = [
"docs/_build/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error"
]
asyncio_mode = "auto"
[tool.coverage.run]
branch = true
source = ["blinker", "tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.mypy]
python_version = "3.8"
files = ["src/blinker", "tests"]
show_error_codes = true
pretty = true
strict = true
[tool.pyright]
pythonVersion = "3.8"
include = ["src/blinker", "tests"]
typeCheckingMode = "basic"
[tool.ruff]
src = ["src"]
fix = true
show-fixes = true
output-format = "full"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warning
]
ignore-init-module-imports = true
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false
[tool.gha-update]
tag-only = [
"slsa-framework/slsa-github-generator",
]