Skip to content

Commit 3c18aea

Browse files
committed
Upgrade module version and add dependencies on .toml
1 parent d844a08 commit 3c18aea

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "BasicReturns"
7-
version = "0.1.0"
7+
version = "0.1.1a1"
88
description = "Standardizes function return values across Python applications to enhance code consistency, readability, and maintainability."
99
readme = { file = "README.md", content-type = "text/markdown", charset = "utf-8" }
10-
license = { text = "MIT" }
10+
license = "MIT"
1111
authors = [{ name = "Dev2Forge", email = "support@dev2forge.software" }]
1212
maintainers = [{ name = "tutosrive", email = "tutosriveorg@gmail.com" }]
1313

@@ -37,12 +37,13 @@ classifiers = [
3737
"Programming Language :: Python :: 3.10",
3838
"Programming Language :: Python :: 3.11",
3939
"Programming Language :: Python :: 3.12",
40-
"License :: OSI Approved :: MIT License",
4140
"Operating System :: OS Independent",
4241
"Typing :: Typed",
4342
"Environment :: Console"
4443
]
4544

45+
dependencies = ["pydantic==2.12.5"]
46+
4647
[tool.setuptools]
4748
package-dir = {"" = "src"}
4849
packages = { find = { where = ["src"] } }

src/BasicReturns/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
__author__: str = 'tutosrive'
44
__org__: str = 'Dev2Forge'
5+
__version__: str = '0.1.1a1'
56
__web_page__: str = 'https://pypi.org/project/BasicReturns'
67
__doc__: str = 'All functions ever return the same models with particulars properties'
78
__all__: list[str] = ['BasicReturn', 'DataAndMsgReturn']

0 commit comments

Comments
 (0)