-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
100 lines (89 loc) · 2.45 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
89
90
91
92
93
94
95
96
97
98
99
100
[tool.poetry]
name = "starception"
description = "Beautiful debugging page for Starlette apps."
version = "1.2.1"
authors = ["Alex Oleshkevich <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/alex-oleshkevich/starception"
repository = "https://github.com/alex-oleshkevich/starception"
documentation = "https://github.com/alex-oleshkevich/starception"
keywords = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
MarkupSafe = "^2"
Jinja2 = "^3"
typing_extensions = "^4.4"
[tool.poetry.group.dev.dependencies]
starlette = "*"
pytest = "^8.0"
pytest-asyncio = "0.24.0"
pytest-cov = "5.0.0"
mypy = "^1.4"
uvicorn = "0.31.0"
fastapi = "0.115.0"
pygments = { optional = true, version = "^2.13" }
httpx = "^0.27.2"
[tool.poetry.extras]
highlight = ["pygments"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["starception"]
omit = ["tests/*", ".venv/*", ".git/*", "*/__main__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError"
]
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
strict = true
pretty = true
show_error_codes = true
files = ["starception", "examples", "tests"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
norecursedirs = [
"node_modules", "frontend", "storage", "dist", ".git",
"*/migrations/*", "*/static/*", "docs", ".venv"
]
addopts = "--tb=short -s --no-cov-on-fail"
testpaths = ["tests"]
[tool.ruff]
exclude = [
".egg",
".git",
".hg",
".mypy_cache",
".nox",
".tox",
".venv",
]
line-length = 120
indent-width = 4
[tool.ruff.lint]
fixable = ["ALL"]
[tool.ruff.format]
skip-magic-trailing-comma = false