Skip to content

Commit 4a5593b

Browse files
committed
fix: Correct metadata for 0.1.2 release
- Correct SPDX license identifier in __init__.py - Update Documentation URL to absolute GitHub path in metadata - Remove redundant Repository URL from pyproject.toml This commit addresses metadata discrepancies to ensure accuracy on PyPI and consistency within the package.
1 parent 08beb91 commit 4a5593b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

jsonpycraft/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from jsonpycraft.manager.configuration import ConfigurationManager
4040

4141
# Additional project details extracted from pyproject.toml
42-
__version__ = "0.1.1"
42+
__version__ = "0.1.2"
4343
__author__ = "Austin Berrio <[email protected]>"
4444
__description__ = "JsonPyCraft is a specialized Python toolkit designed for efficient and structured JSON management."
45-
__license__ = "AGPL"
45+
__license__ = "AGPL-3.0-or-later"

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tool.poetry]
22
name = "jsonpycraft"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "JsonPyCraft is a specialized Python toolkit designed for efficient and structured JSON management."
55
authors = ["Austin Berrio <[email protected]>"]
66
license = "AGPL-3.0-or-later"
77
readme = "README.md"
8-
repository = "https://github.com/teleprint-me/jsonpycraft"
98

109
[tool.poetry.dependencies]
1110
python = ">=3.11"
@@ -23,7 +22,7 @@ mkdocstrings = {version = "^0.24.0", extras = ["python"]}
2322
mkdocs-material = "^9.4.14"
2423

2524
[tool.poetry.urls]
26-
"Documentation" = "https://github.com/teleprint-me/jsonpycraft/docs"
25+
"Documentation" = "https://github.com/teleprint-me/json-py-craft/tree/main/docs"
2726
"Source" = "https://github.com/teleprint-me/jsonpycraft"
2827

2928
[tool.build]

0 commit comments

Comments
 (0)