-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 945 Bytes
/
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
[project]
name = "hwwwook"
description = "Build a hugo static website with a Gitolite hook"
dynamic = [
"version",
]
requires-python = ">=3.10"
authors = [
{email = "[email protected]"},
{name = "Davis Schirmer"},
]
dependencies = [
"fastapi",
"uvicorn[standard]",
]
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]",
"wheel",
]
[tool.setuptools_scm]
[tool.black]
line-length = 79
target-version = [
"py310",
]
[tool.isort]
line_length = 79
profile = "black"
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
no_implicit_reexport = true
show_error_context = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true