-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (68 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (68 loc) · 1.82 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
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "pyptmpl"
version = "2026.4.16.1"
description = "Bootstrap a new Python project with best-practice tooling."
readme = "README.md"
license = "GPL-3.0-or-later"
authors = [{ name = "rbroderi", email = "rbroderi@gmail.com" }]
requires-python = ">=3.13"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["beartype>=0.22.9", "beaupy>=3.11.0"]
[project.scripts]
pyptmpl = "pyptmpl.__main__:main"
[project.optional-dependencies]
dev = [
"prek>=0.3.8",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"pytest-sugar>=1.1.1",
"fest-mutate>=0.1.3",
]
docs = [
"furo>=2025.7.19",
"sphinx>=8.2.3",
"sphinx-autobuild>=2024.10.3",
"zensical>=0.0.32",
]
build = ["pyinstaller>=6.16.0"]
[build-system]
requires = ["uv_build>=0.11.6,<0.12"]
build-backend = "uv_build"
[tool.uv_build]
include = ["src/pyptmpl/templates/**"]
[tool.basedpyright]
venvPath = "."
venv = ".venv"
include = ["src"]
pythonVersion = "3.13"
reportUnusedCallResult = "none"
reportAny = "none"
reportExplicitAny = "none"
reportImplicitStringConcatenation = "none"
reportUnusedFunction = "none"
reportMissingParameterType = "none"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"
reportUnknownArgumentType = "none"
reportUnknownMemberType = "none"
reportMissingTypeStubs = "none"
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint.isort]
force-single-line = true
[tool.coverage.run]
source = ["src/pyptmpl"]
omit = ["src/pyptmpl/tests/*"]
[tool.pyrefly]
permissive-ignores = true
[tool.pytest.ini_options]
addopts = "--ignore=delme --ignore=docs_sphinx"
[tool.uv.workspace]
members = ["f", "delme"]