-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
34 lines (28 loc) · 893 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
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "baker"
version = "0.2.0"
description = "Package to parse cooking recipes towards building an Recipe Recommender."
readme = "README.md"
authors = [{name = "Vianney Mixtur", email = "[email protected]"}]
dynamic = ["dependencies"]
requires-python = ">= 3.10"
[project.urls]
Homepage = "https://github.com/VianneyMI/baker"
[tool.bumpver]
current_version = "0.2.0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = false
tag = false
push = false
[tool.setuptools.dynamic]
dependencies = {file = ["requirements/core.txt"]}
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"src/baker/__init__.py" = ['__version__ = "{version}"']