diff --git a/README.md b/README.md index aa7d49b..da580a1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Argenta -python library for creating cli apps +Python library for creating cli apps diff --git a/argenta/router/entity.py b/argenta/router/entity.py index ff81e9e..de0cc5a 100644 --- a/argenta/router/entity.py +++ b/argenta/router/entity.py @@ -1,7 +1,7 @@ from typing import Callable, Any -from src.core.router.exceptions import (InvalidCommandInstanceException, - UnknownCommandHandlerHasAlreadyBeenCreatedException, - InvalidDescriptionInstanceException) +from ..router.exceptions import (InvalidCommandInstanceException, + UnknownCommandHandlerHasAlreadyBeenCreatedException, + InvalidDescriptionInstanceException) class Router: diff --git a/dist/argenta-0.1.0-py3-none-any.whl b/dist/argenta-0.1.0-py3-none-any.whl new file mode 100644 index 0000000..6165626 Binary files /dev/null and b/dist/argenta-0.1.0-py3-none-any.whl differ diff --git a/dist/argenta-0.1.0.tar.gz b/dist/argenta-0.1.0.tar.gz new file mode 100644 index 0000000..ca83f86 Binary files /dev/null and b/dist/argenta-0.1.0.tar.gz differ diff --git a/dist/argenta-0.1.1-py3-none-any.whl b/dist/argenta-0.1.1-py3-none-any.whl new file mode 100644 index 0000000..1314471 Binary files /dev/null and b/dist/argenta-0.1.1-py3-none-any.whl differ diff --git a/dist/argenta-0.1.1.tar.gz b/dist/argenta-0.1.1.tar.gz new file mode 100644 index 0000000..d810638 Binary files /dev/null and b/dist/argenta-0.1.1.tar.gz differ diff --git a/pyproject.toml b/pyproject.toml index 823a95c..bb1fb8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "argenta" -version = "0.1.0" +version = "0.1.1" description = "python library for creating cli apps" authors = [ {name = "kolo",email = "kolo.is.main@gmail.com"} diff --git a/setup.py b/setup.py index 9673553..709f557 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name="argenta", - version="0.1.0", + version="0.1.1", author="kolo", 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_content_type="text/markdown", packages=find_packages(),