-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 781 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
[project]
name = "modern-python-boilerplate"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
authors = [
{ name = "Corentin Meyer", email = "contact@cmeyer.fr" },
]
maintainers = [
{ name = "Corentin Meyer", email = "contact@cmeyer.fr" }
]
dependencies = []
[project.urls]
Homepage = ""
Documentation = ""
Repository = ""
Issues = ""
[dependency-groups]
dev = [
"ruff",
"pytest",
"pytest-cov",
"ty",
"twine",
"build",
"pre-commit",
"rich",
]
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[project.scripts]
modern_python_boilerplate = "modern_python_boilerplate.main:hello_world"
[tool.ruff]
target-version = "py313"
[tool.coverage.run]
omit = ["tests/*"]