-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 923 Bytes
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
[project]
name = "dnf-gm-tool"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"cachetools>=6.2.1",
"loguru>=0.7.3",
"mako>=1.3.10",
"polars>=1.35.1",
"pydantic>=2.12.3",
"pymysql>=1.1.2",
"pyside6>=6.10.0",
"shortuuid>=1.0.13",
"show-in-file-manager>=1.1.5",
"sqlalchemy>=2.0.44",
"zhconv",
]
[dependency-groups]
dev = [
"maturin>=1.10.2",
"pyinstaller>=6.16.0",
"pympler>=1.1",
"pytest>=8.4.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["*_test.py", "test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = ["-v", "--tb=short"]
[tool.uv.sources]
zhconv = { git = "https://github.com/seamile/zhconv" }
[build-system]
requires = ["maturin>=1.10,<2.0"]
build-backend = "maturin"
[tool.maturin]
bindings = "pyo3"
features = ["python"]