diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 81229e8..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 8fb17e5..e85d6af 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,15 @@ +# Hidden files +.DS_Store +*.vscode/ + +# Python files venv/ manta.egg-info/ .pytest_cache __pycache__/ build/ +# Miscellaneous file types *.v *.sv *.vcd diff --git a/src/manta/cli.py b/src/manta/cli.py index d84eba5..4703523 100644 --- a/src/manta/cli.py +++ b/src/manta/cli.py @@ -2,7 +2,8 @@ from .manta import Manta from warnings import warn from sys import argv from pkg_resources import get_distribution -version = "v" + get_distribution('manta').version + +version = "v" + get_distribution("manta").version logo = f""" \033[96m (\.-./) @@ -26,6 +27,7 @@ Supported commands: help, ray display this splash screen (hehe...splash screen) """ + def help(): print(logo)