forked from py-libhdate/py-libhdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (71 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "hdate"
version = "0.11.1"
description = "Jewish/Hebrew date and Zmanim in native Python 2.7/3.x"
authors = [
{name = "Royi Reshef", email = "[email protected]"},
]
maintainers = [
{name = "Tsvi Mostovicz", email = "[email protected]"},
]
license = {text = "GPL-3.0-or-later"}
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
"astral<3.0,>=2.2"
]
[project.urls]
repository = "https://github.com/py-libhdate/py-libhdate"
documentation = "https://py-libhdate.readthedocs.io/en/latest/"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "88"
[tool.pytest.ini_options]
# Show summary output for all types of failures
# Run doctest that are part of docstrings
# Run doctest in RST files
addopts = "-ra --doctest-modules --doctest-glob=*.rst"
[dependency-groups]
dev = [
"tox>=4.23.2",
"pylint>=3.3.1",
"isort>=5.13.2",
"black>=24.10.0",
"pytest>=8.3.3",
"tox-pdm>=0.7.2",
"pre-commit>=4.0.1",
"Sphinx>=7.4.7",
"flake8>=7.1.1",
"mypy>=1.13.0",
"pytest-profiling>=1.8.1",
"hypothesis>=6.123.2",
]
test = [
"pytest>=8.3.3",
"pytest-coverage>=0.0",
]
[tool.bumpversion]
current_version = "0.11.1"
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
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Release: {current_version} → {new_version}"
allow_dirty = true
commit = true
message = "Release version: {current_version} → {new_version}"
commit_args = ""