uploading on pypi

This commit is contained in:
2025-02-07 01:17:52 +03:00
parent 60d7844946
commit 888a61a227
8 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
# Argenta # Argenta
python library for creating cli apps Python library for creating cli apps
+1 -1
View File
@@ -1,5 +1,5 @@
from typing import Callable, Any from typing import Callable, Any
from src.core.router.exceptions import (InvalidCommandInstanceException, from ..router.exceptions import (InvalidCommandInstanceException,
UnknownCommandHandlerHasAlreadyBeenCreatedException, UnknownCommandHandlerHasAlreadyBeenCreatedException,
InvalidDescriptionInstanceException) InvalidDescriptionInstanceException)
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "argenta" name = "argenta"
version = "0.1.0" version = "0.1.1"
description = "python library for creating cli apps" description = "python library for creating cli apps"
authors = [ authors = [
{name = "kolo",email = "kolo.is.main@gmail.com"} {name = "kolo",email = "kolo.is.main@gmail.com"}
+2 -2
View File
@@ -5,10 +5,10 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup( setup(
name="argenta", name="argenta",
version="0.1.0", version="0.1.1",
author="kolo", author="kolo",
author_email="kolo.is.main@gmail.com", author_email="kolo.is.main@gmail.com",
description="python library for creating cli apps", description="Python library for creating CLI apps",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
packages=find_packages(), packages=find_packages(),