argenta 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: argenta
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: python library for creating cli apps
5
5
  License: MIT
6
6
  Author: kolo
@@ -14,5 +14,5 @@ Classifier: Programming Language :: Python :: 3.13
14
14
  Description-Content-Type: text/markdown
15
15
 
16
16
  # Argenta
17
- python library for creating cli apps
17
+ Python library for creating cli apps
18
18
 
@@ -0,0 +1,2 @@
1
+ # Argenta
2
+ Python library for creating cli apps
@@ -0,0 +1,7 @@
1
+ from .entity import App
2
+ from .exceptions import (HandlerForUnknownCommandsCanOnlyBeDeclaredForMainRouterException,
3
+ InvalidDescriptionMessagePatternException,
4
+ InvalidRouterInstanceException,
5
+ OnlyOneMainRouterIsAllowedException,
6
+ MissingMainRouterException,
7
+ MissingHandlersForUnknownCommandsOnMainRouterException)
@@ -0,0 +1,4 @@
1
+ from .entity import Router
2
+ from .exceptions import (UnknownCommandHandlerHasAlreadyBeenCreatedException,
3
+ InvalidDescriptionInstanceException,
4
+ InvalidCommandInstanceException)
@@ -1,7 +1,7 @@
1
1
  from typing import Callable, Any
2
- from src.core.router.exceptions import (InvalidCommandInstanceException,
3
- UnknownCommandHandlerHasAlreadyBeenCreatedException,
4
- InvalidDescriptionInstanceException)
2
+ from ..router.exceptions import (InvalidCommandInstanceException,
3
+ UnknownCommandHandlerHasAlreadyBeenCreatedException,
4
+ InvalidDescriptionInstanceException)
5
5
 
6
6
 
7
7
  class Router:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "argenta"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "python library for creating cli apps"
5
5
  authors = [
6
6
  {name = "kolo",email = "kolo.is.main@gmail.com"}
argenta-0.1.0/README.md DELETED
@@ -1,2 +0,0 @@
1
- # Argenta
2
- python library for creating cli apps
@@ -1,2 +0,0 @@
1
- from .router import *
2
- from .app import *
File without changes
File without changes
File without changes