This commit is contained in:
2025-02-07 18:35:08 +03:00
parent e95b0f5d8b
commit 93438f8e45
5 changed files with 13 additions and 4 deletions
-2
View File
@@ -1,2 +0,0 @@
from .router import *
from .app import *
+7
View File
@@ -0,0 +1,7 @@
from .entity import App
from .exceptions import (HandlerForUnknownCommandsCanOnlyBeDeclaredForMainRouterException,
InvalidDescriptionMessagePatternException,
InvalidRouterInstanceException,
OnlyOneMainRouterIsAllowedException,
MissingMainRouterException,
MissingHandlersForUnknownCommandsOnMainRouterException)
+4
View File
@@ -0,0 +1,4 @@
from .entity import Router
from .exceptions import (UnknownCommandHandlerHasAlreadyBeenCreatedException,
InvalidDescriptionInstanceException,
InvalidCommandInstanceException)
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "argenta"
version = "0.1.1"
version = "0.1.2"
description = "python library for creating cli apps"
authors = [
{name = "kolo",email = "kolo.is.main@gmail.com"}
+1 -1
View File
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name="argenta",
version="0.1.1",
version="0.1.2",
author="kolo",
author_email="kolo.is.main@gmail.com",
description="Python library for creating CLI apps",