forked from RS-Credentive/oscal-pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (27 loc) · 869 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "oscal-pydantic"
version = "2023.3.21"
description = "A set of Pydantic models generated from the OSCAL specification."
readme = "README.md"
authors = [
{ name = "Robert Sherwood", email = "[email protected]" },
]
license = { file = "LICENSE" }
dependencies = ["pydantic"]
keywords = ["oscal", "OSCAL", "pydantic"]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/RS-Credentive/oscal-pydantic"
[tool.bumpver]
current_version = "2023.3.21"
version_pattern = "YYYY.MM.DD"
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}"']
"src/oscal_pydantic/__init__.py" = ["{version}"]