-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (31 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
39 lines (31 loc) · 943 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
[project]
name = "jeteve_template"
version = "0.0.1"
authors = [{ name = "Jerome Eteve", email = "jerome.eteve@gmail.com" }]
description = "A small example package"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest", "ipykernel"]
[project.scripts]
jeteve_template_cli = "jeteve_template.cli:one_main"
[project.urls]
"Homepage" = "https://github.com/jeteve/python-template"
"Bug Tracker" = "https://github.com/jeteve/python-template/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
sources = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN201", "T201", "E501", "S101", "PLR2004", "D"]