Skip to content

Commit

Permalink
fix: import error
Browse files Browse the repository at this point in the history
  • Loading branch information
samdoghor committed Jan 24, 2024
1 parent b3e0fe3 commit 71771f5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/create_myte/utils/info.json
Original file line number Diff line number Diff line change
@@ -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]"
},
Expand Down
5 changes: 3 additions & 2 deletions packages/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
name = Myte
name = myte
version = 1.0.0a1
author = Samuel Doghor
author_email = talkto@samdoghor.com
Expand Down

0 comments on commit 71771f5

Please sign in to comment.