-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 940 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (41 loc) · 940 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
47
48
49
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyfolia"
version = "0.1.0"
description = "Deterministic garden planning for small vegetable beds."
readme = "README.md"
requires-python = ">=3.12"
license = {text = "GPL-3.0-or-later"}
authors = [{name = "pyFolia contributors"}]
dependencies = []
[dependency-groups]
dev = [
"coverage",
"flake8",
"mypy",
"pytest",
"ruff",
]
[project.scripts]
pyfolia = "pyfolia.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/pyfolia"]
sources = ["src"]
[tool.ruff]
line-length = 88
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
exclude = [".git", ".venv", "build", "dist"]
[tool.mypy]
python_version = "3.12"
strict = true
files = ["src/pyfolia"]
[tool.pytest.ini_options]
testpaths = ["tests"]