-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.46 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "dpn_pyutils"
version = "3.12.3"
description = "A collection of python utils used by the DPN"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "David Pirogov", email = "580286+davidpirogov@users.noreply.github.com" },
]
requires-python = ">=3.12"
[tool.poetry]
name = "dpn_pyutils"
version = "3.12.3"
description = "A collection of python utils used by the DPN"
authors = ["David Pirogov <580286+davidpirogov@users.noreply.github.com>"]
readme = "README.md"
license = "LICENSE"
homepage = "https://github.com/davidpirogov/dpn_pyutils"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
packages = [{ include = "dpn_pyutils" }]
[tool.poetry.dependencies]
python = "^3.8"
pytz = "2024.1"
colorama = "0.4.6"
tox = "^4.12.1"
orjson = "^3.9.13"
coverage = "^7.4.1"
pytest = "^8.0.0"
bumpver = "^2023.1129"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_file = "pytest.log"
log_cli_format = "%(asctime)s [%(levelname)8s] (%(filename)s:%(lineno)s) %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.bumpver]
current_version = "3.12.3"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']