-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.14 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
[project]
name = "pytemplate"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.11"
authors = [
{name = "<username>", email = "[email protected]"},
]
maintainers = [
{name = "<username>", email = "[email protected]"}
]
keywords = ["project-template", "python", "uv"]
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
dependencies = []
[project.urls]
Homepage = "https://github.com/<username>/<repository-name>"
Documentation = "https://github.com/<username>/<repository-name>/wiki"
Repository = "https://github.com/<username>/<repository-name>.git"
"Bug Tracker" = "https://github.com/<username>/<repository-name>/issues"
Changelog = "https://github.com/<username>/<repository-name>/blob/master/CHANGELOG.md"
[tool.pytest.ini_options]
pythonpath = "src"
[dependency-groups]
dev = [
"detect-secrets>=1.5.0",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"ruff>=0.9.6",
]
[tool.bandit]
exclude_dirs = ["tests", "docs"]
skips = ["B404", "B603"]
tests = ["B102", "B101", "B301"]
[tool.vulture]
ignore_decorators = []
paths = ["src", "whitelist-vulture"]
sort_by_size = true
ignore_names = []