-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
105 lines (94 loc) · 1.7 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
101
102
103
104
105
[project]
authors = [
{ name = "Chris Gregory", email = "christopher.b.gregory@gmail.com" },
]
dependencies = [
"inflect>=7.5.0",
"pydantic>=2.10.5",
"rich>=13.9.4",
"typer>=0.15.1",
]
description = "Compatibility-aware package manager."
keywords = [
"package",
"upgrade",
"dependency",
"management",
"repository",
"manager",
"compatibility",
]
name = "myxa"
readme = "README.md"
requires-python = ">=3.12"
version = "0.1.0"
[tool.uv]
dev-dependencies = [
"covcheck[toml]>=0.4.3",
"pytest-cov>=6.0.0",
"mypy>=1.14.1",
"pytest>=8.3.4",
"ruff>=0.9.2",
"semver>=3.0.3",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project.urls]
repository = "https://github.com/gregorybchris/myxa"
[project.scripts]
mx = "myxa.cli:app"
myxa = "myxa.cli:app"
[tool.covcheck]
branch = 0.0
line = 0.0
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
plugins = ["pydantic.mypy"]
[tool.ruff]
line-length = 120
src = ["src"]
[tool.ruff.lint]
ignore = ["D100", "D104", "FIX002", "TD002", "TD003"]
select = [
"A",
"ARG",
"B",
"BLE",
"C4",
"E",
"EM",
"ERA",
"F",
"FIX",
"G",
"I",
"ICN",
"ISC",
"LOG",
"N",
"PL",
"PT",
"PTH",
"PLR",
"RET",
"RUF",
"SIM",
"SLF",
"T20",
"TCH",
"TD",
"TID",
"W",
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.extend-per-file-ignores]
"**/*.py" = ["A001", "A002"]
"**/tests/**/*.py" = ["SLF", "PLR2004", "PLR6301"]
"src/myxa/cli.py" = ["T201", "T203"]