-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.07 KB
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
[project]
name = "example"
version = "0.1.0"
description = "Example Repo for template."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.6",
"granian>=1.7.5",
"jetpack>=0.1.1",
"orjson>=3.10.15",
"pydantic<2.11",
"pydantic-settings>=2.7.0",
"shortuuid>=1.0.13",
]
[dependency-groups]
dev = [
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"ruff>=0.8.3",
"httpx>=0.28.1",
"pre-commit>=4.0.1",
"debugpy>=1.8.11",
]
[[tool.uv.index]]
# Optional name for the index.
name = "prismatica-pypi"
# Required URL for the index.
url = "https://readUser:hh(iBaf71$icV63@pypi.prismatica.in/simple"
[tool.pytest.ini_options]
pythonpath = ["scripts", "."]
[tool.coverage.report]
precision = 2
fail_under = 50
show_missing = true
skip_covered = true
exclude_lines = [
"pragma: no cover",
"pragma: nocover",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:",
"raise NotImplementedError",
]
[tool.coverage.run]
omit = [
"*/tests/*",
"*/scripts/constants/*",
"*/scripts/db/*",
"app.py",
"main.py",
]