-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.27 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
59
60
61
[build-system]
build-backend = "uv_build"
requires = [ "uv-build>=0.9" ]
[project]
name = "modern-python-template"
version = "0.1.0"
description = "A modern python template"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Ron Leizrowice", email = "ron.leizrowice@protonmail.com" },
]
requires-python = ">=3.14"
classifiers = [ "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.14" ]
dependencies = [
"aiofiles>=25",
"click>=8",
"httpx>=0.28",
"logfire[httpx]>=4",
"numpy>=2",
"orjson>=3",
"pandas>=3",
"polars>=1.37",
"pydantic>=2",
"pyprojroot>=0.3",
"rich>=14",
]
scripts.hello-world = "modern_python_template.cli:hello_world"
[dependency-groups]
dev = [
"deptry>=0.23",
"prek>=0.3",
"pyproject-fmt>=2",
"pytest>=8",
"pytest-asyncio>=1",
"ruff>=0.14",
"ty>=0.0.13",
]
[tool.uv]
cache-dir = ".cache/uv"
[tool.pyproject-fmt]
indent = 2
keep_full_version = false
[tool.pytest.ini_options]
testpaths = [ "tests" ]
python_files = [ "test_*.py", "*_test.py" ]
python_classes = [ "Test*", "*Test" ]
xfail_strict = true
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
asyncio_default_test_loop_scope = "session"
cache_dir = ".cache/pytest"
[tool.ty.analysis]
respect-type-ignore-comments = false