diff --git a/README.md b/README.md index 6eb57f8..fcb03ce 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Install `Myte` once without a virtual environment so it would be available to bo - Run the code below ```Bash Copy -myte start project +create-myte ``` ### How it looks without an activated virtual environment diff --git a/packages/create_myte/utils/info.json b/packages/create_myte/utils/info.json index 896849b..b3d4bc5 100644 --- a/packages/create_myte/utils/info.json +++ b/packages/create_myte/utils/info.json @@ -1,5 +1,5 @@ { - "welcome": "Myte requires at least Python 3.11. However, the tool may still work fine in lower versions. If you encounter any error, do well to report them here https://cutt.ly/1wSR7LW0", + "welcome": "Myte requires at least Python 3.8. However, the tool may still work fine in lower versions. If you encounter any error, do well to report them here https://cutt.ly/1wSR7LW0", "salutations":{ "thank_you": "[yellow]Thank you[/yellow]" }, diff --git a/packages/main.py b/packages/main.py index 770b58e..fb45aba 100644 --- a/packages/main.py +++ b/packages/main.py @@ -6,12 +6,13 @@ """ import typer -from create_myte.resources.setup_project import SetupProject -from create_myte.utils.constants import messages from rich import print as mprint from rich.console import Console from rich.text import Text +from .create_myte.resources.setup_project import SetupProject +from .create_myte.utils.constants import messages + # cli initialization myte = typer.Typer() diff --git a/pyproject.toml b/pyproject.toml index af63613..2c051a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "Myte" +name = "myte" version = "1.0.0a1" dependencies = [ "typer", diff --git a/setup.cfg b/setup.cfg index dd9ef75..725a733 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -name = Myte +name = myte version = 1.0.0a1 author = Samuel Doghor author_email = talkto@samdoghor.com