-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.46 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
[project]
name = "tom-eso"
# this version is a placeholder: version supplied by poetry-dynamic-versioning
description = "TOM Toolkit Facility module for the European Southern Observatory telescopes"
authors = [
{name = "Lindy Lindstrom", email = "llindstrom@lco.global"}
]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{include = "tom_eso"}]
dynamic = ["version"]
requires-python = ">=3.10,<3.13"
dependencies = [
"tomtoolkit>=2.31.7,<4",
"p2api>=1,<2",
"phase1api>=0,<2",
]
[tool.poetry]
version = "0.0.0" # version supplied by poetry-dynamic-versioning
[tool.poetry.group.lint.dependencies]
flake8 = ">=6.0,<7.4"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
# the default pattern regex makes the 'v' manditory
# this pattern modifies the default regex in order to make the 'v' optional
# ('v' becomes '[v]?' meaning a single v, [v], and ? means optional)
pattern = "(?x)^[v]?((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)([-._]?((?P<stage>[a-zA-Z]+)[-._]?(?P<revision>\\d+)?))?(\\+(?P<tagged_metadata>.+))?$"
# substitute version not only in pyproject.toml (which the config block above does)
# but also the tom_eso/__init__.py file
[tool.poetry-dynamic-versioning.substitution]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
# poetry_dynamic_versioning.backend is a thin wrapper around the standard build-backend = "poetry.core.masonry.api"