-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.38 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
[build-system]
requires = ["setuptools>=42", "wheel", "nuitka", "toml"]
build-backend = "nuitka.distutils.Build"
[project]
name = "kachi"
dynamic = ["version"]
requires-python = ">=3.12"
authors = [{ name = "Ricky White", email = "[email protected]" }]
maintainers = [{ name = "Ricky White", email = "[email protected]" }]
description = "Kachi is a simple tool for backing up valuable files."
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["dotfile, backup, cli, configuration"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"typer==0.15.2",
"pyyaml==6.0.2"
]
[project.urls]
Documentation = "https://github.com/EndlessTrax/kachi/README.md"
Repository = "https://github.com/EndlessTrax/kachi"
"Bug Tracker" = "https://github.com/EndlessTrax/kachi/issues"
[project.scripts]
kachi = "kachi.cli:app"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov-config=.coveragerc --cov=src/kachi --cov-report term-missing"
testpaths = ["tests"]
[tool.ruff.lint]
select = ["I", "E"]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
docstring-code-line-length = 72
[tool.uv]
dev-dependencies = [
"nuitka>=2.4.11",
"pytest>=8.3.3",
"pytest-cov>=6.0.0",
"ruff>=0.7.2",
]