-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 877 Bytes
/
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
[project]
name = "army-days"
version = "0.3.0"
description = "day countdown program (python edition)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["click>=8.1.7", "pydantic>=2.9.1", "pyyaml>=6.0.2"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"freezegun>=1.5.1",
"ipython>=8.27.0",
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
]
[project.scripts]
army-days = "army_days.cli:main"
[tool.ruff]
line-length = 120
fix = true
target-version = "py312"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
extend-fixable = ["E", "F", "UP", "B", "SIM", "I"]