-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.5 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
#:tombi schema.strict = false
[project]
name = "cookiecutter-python-template"
version = "0.10.dev0"
description = "Cookiecutter template for a plain python project or library"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "Reinout van Rees", email = "reinout@vanrees.org" },
{ name = "Nelen & Schuurmans", email = "info@nelen-schuurmans.nl" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
]
dependencies = ["cookiecutter"]
[project.urls]
homepage = "https://github.com/nens/cookiecutter-python-template"
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"pytest>=8.4.2",
"pytest-sugar>=1.1.1",
]
[tool.pyright]
# Pyright/pylance/vscode configuration.
# Note: if you want a different setup, you can overwrite this with a
# "pyrightconfig.json", which takes precedence.
include = ["src"]
venvPath = "."
venv = ".venv"
[tool.pytest.ini_options]
norecursedirs = "{{ cookiecutter.project_name }}"
addopts = "tests/"
[tool.ruff]
exclude = ["*cookiecutter.project_name*"]
target-version = "py312"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "C901"]
[tool.zest-releaser]
# We don't need releasing as a package.
release = false