-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
41 lines (33 loc) · 905 Bytes
/
pyproject.toml
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
# https://docs.astral.sh/uv/reference/settings/
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# PROJECT
[project]
name = "cookiecutter-mlops-package"
version = "3.0.0"
description = "Build and deploy Python packages and Docker images for MLOps projects."
authors = [{ name = "Médéric HURIER", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE.txt" }
# DEPENDENCIES
[dependency-groups]
dev = [
"commitizen>=4.1.0",
"invoke>=2.2.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cookies>=0.7.0",
"pytest-shell-utilities>=1.9.7",
]
# TOOLS
[tool.uv]
package = false
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"