-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.3 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
62
63
64
65
66
67
68
[project]
name = "dot-tools"
version = "5.0.0"
description = "My dotfiles"
authors = [
{name = "Tucker Beck", email ="tucker.beck@gmail.com"},
]
license-files = ["LICENSE.md"]
requires-python = ">=3.13"
dependencies = [
"gitpython~=3.1",
"loguru~=0.7",
"pprintpp>=0.4.0",
"py-buzz~=7.3",
"pydantic>=2.11.4",
"pyperclip>=1.9.0",
"pyyaml>=6.0.2",
"snick>=2.2.0",
"typer~=0.15",
"typerdrive~=0.7",
"xdg-base-dirs>=6.0.2",
]
[tool.uv]
package = true
[dependency-groups]
dev = [
"debugpy~=1.8",
"ipython~=9.2",
"pyclean~=3.1",
"pytest~=8.3",
"pytest-cov~=6.1",
"pytest-mock~=3.14",
"pytest-pretty~=1.2",
"pytest-random-order~=1.1",
"respx>=0.22.0",
"ruff~=0.11",
"ty>=0.0.14",
"typos~=1.32",
]
[project.scripts]
dt = "dot_tools.cli.main:cli"
[tool.pytest.ini_options]
addopts = [
"--random-order",
"--cov=src/dot_tools",
"--cov-report=term-missing",
"--cov-fail-under=85",
"--cov-report=xml:.coverage.xml",
"--junitxml=.junit.xml",
"--override-ini=junit_family=legacy",
]
[tool.ruff]
line-length = 120
src = ["src/dot_tools", "tests"]
[tool.ty.rules]
any-implicit = "ignore"
any-explicit = "ignore"
unused-call-result = "ignore"
[build-system]
requires = ["uv_build>=0.7.6,<0.8.0"]
build-backend = "uv_build"