forked from openmsa/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.23 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
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
#requires = ["poetry-core"]
#build-backend = "poetry.core.masonry.api"
[project]
name = "msa-sdk"
version = "2.2.1"
description = "MSA Python SDK"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["MSA", "ubiqube", "python-sdk"]
dependencies = [
"requests == 2.32.4"
]
requires-python = ">=3.12"
[project.optional-dependencies]
dev = ["pytest-cov == 6.2.1", "bumpver == 2025.1131", "pip-tools == 7.5.0", "pytest == 8.4.1", "pytest-pydocstyle == 2.4.0", "pytest-isort == 4.0.0"]
[project.urls]
Homepage = "https://github.com/openmsa/python-sdk"
[project.scripts]
[tool.bumpver]
current_version = "2.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "🔖 Bump version {old_version} → {new_version}"
commit = false
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version1}"',
]
"msa_sdk/__init__.py" = [
'^__version__ = "{version}"',
'^VERSION = "{version}"',
]