-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 927 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
[project]
name = "nancy"
version = "13.1.0"
description = "Simple templating system"
license = "GPL-3.0-or-later"
authors = [
{name = "Reuben Thomas", email = "rrt@sc3d.org"},
]
readme = "README.md"
urls = {Homepage = "https://github.com/rrthomas/nancy"}
requires-python = ">= 3.13"
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
]
[project.scripts]
nancy = "nancy:main"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio"]
[build-system]
requires = [
"build",
"pre-commit",
"setuptools",
]
[tool.setuptools]
packages = ["nancy"]
[tool.pytest.ini_options]
addopts = "-p no:warnings"
asyncio_mode = "auto"
filterwarnings = "ignore::UserWarning"
xfail_strict = true
[tool.ruff.lint]
select = ["D", "E", "F", "I", "UP"]
ignore = ["D1", "D401", "E501"]
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.ruff.lint.pydocstyle]
convention = "google"