-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.15 KB
/
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
42
43
44
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "dbbs-models"
authors = [{name = "Robin De Schepper", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
dynamic = ["version", "description"]
dependencies = [
"arborize[neuron]~=4.0",
"dbbs-catalogue~=4.0",
]
[project.optional-dependencies]
test = ["coverage~=7.0"]
[project.urls]
Home = "https://github.com/dbbs-lab/models"
[tool.flit.module]
name = "dbbs_models"
[tool.bumpversion]
current_version = "4.0.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = "--no-verify"
[[tool.bumpversion.files]]
filename = "dbbs_models/__init__.py"