mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
v0.1.2
This commit is contained in:
@@ -1,2 +0,0 @@
|
|||||||
from .router import *
|
|
||||||
from .app import *
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
from .entity import App
|
||||||
|
from .exceptions import (HandlerForUnknownCommandsCanOnlyBeDeclaredForMainRouterException,
|
||||||
|
InvalidDescriptionMessagePatternException,
|
||||||
|
InvalidRouterInstanceException,
|
||||||
|
OnlyOneMainRouterIsAllowedException,
|
||||||
|
MissingMainRouterException,
|
||||||
|
MissingHandlersForUnknownCommandsOnMainRouterException)
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
from .entity import Router
|
||||||
|
from .exceptions import (UnknownCommandHandlerHasAlreadyBeenCreatedException,
|
||||||
|
InvalidDescriptionInstanceException,
|
||||||
|
InvalidCommandInstanceException)
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "argenta"
|
name = "argenta"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
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"}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="argenta",
|
name="argenta",
|
||||||
version="0.1.1",
|
version="0.1.2",
|
||||||
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",
|
||||||
|
|||||||
Reference in New Issue
Block a user