-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 966 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 966 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "csonpath"
version = "0.10.0"
readme = "README.md"
[tool.setuptools]
packages = [] # no Python packages, just an extension
ext-modules = [
{name="csonpath", sources = ["csonpath_python.c"]}
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5"
]
[tool.pytest.ini_options]
testpaths = ["tests/python"]
[tool.bumpversion]
current_version = "0.10.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = true
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "version {new_version}"
allow_dirty = true
commit = true
message = "Bump to {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []