-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (68 loc) · 1.93 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
[build-system]
requires = ["setuptools~=69.0", "wheel~=0.42.0"]
build-backend = "setuptools.build_meta"
[project]
name = "itsUP"
version = "0.1.1"
license = { text = "GPL-3.0-only" }
authors = [{ name = "Maurice Faber", email = "[email protected]" }]
description = "Lean, automated, poor man's infra for lightweight services running in docker."
readme = "README.md"
classifiers = [
"Framework :: FastAPI",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
"Topic :: Software Development :: Build Tools",
]
keywords = ["github", "webhooks", "fastapi"]
dynamic = ["dependencies", "optional-dependencies"]
requires-python = ">=3.11"
[project.urls]
homepage = "https://github.com/morriz/github-webhooks"
"Source Code" = "https://github.com/morriz/github-webhooks"
"Bug Tracker" = "https://github.com/morriz/github-webhooks/issues"
[tool.black]
line-length = 120
preview = true
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.mypy]
check_untyped_defs = true
disable_error_code = ["import-untyped"]
disallow_any_generics = true
disallow_untyped_defs = true
exclude = ["^.venv/"]
files = ["**/*.py"]
follow_imports = "skip"
plugins = "pydantic.mypy"
python_version = "3.11"
strict_optional = false
warn_redundant_casts = true
warn_unused_ignores = true
[tool.pydantic-mypy]
init_forbid_extra = true
warn_untyped_fields = true
[tool.pylint.'MESSAGES CONTROL']
disable = [
"invalid-name",
"missing-docstring",
"missing-module-docstring",
"missing-timeout",
"no-name-in-module",
"redefined-builtin",
"too-few-public-methods",
"too-many-arguments",
"unused-argument",
"wrong-import-position",
]
[tool.pylint.'FORMAT']
max-line-length = 120
[tool.pyproject-fmt]
indent = 4
keep_full_version = false
max_supported_python = "3.12"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements-prod.txt"] }
optional-dependencies = { test = { file = ["requirements-test.txt"] } }