From 0eddf129319d224b8fb2fc9ed3d68633a9c2972a Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Thu, 28 Dec 2023 14:27:59 -0800 Subject: [PATCH] banish .DS_Store --- .DS_Store | Bin 6148 -> 0 bytes .gitignore | 6 ++++++ src/manta/cli.py | 4 +++- 3 files changed, 9 insertions(+), 1 deletion(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 81229e8d26382bd3469cb3d9bb2de3f1954844ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jqp4=5QS&dB4Cr!avKle4VIuM@B*S@B?yZB9^E%TjnP_yyn&f-XEsBUS7b9H zqQmpN5$Q#wgBxXSVPuMYE)TiO>2iLYjtb*@FJ*K=2U&T%hcRwa*e@u>x3=Er<$CqZN!+^)bZi z-VT<$t|nVB+C_8t(7dzS6a&*}7cEF&S{)2jfC`Khm`C2*`M-mIoBu~GOsN1B_%j7` zvE6S6yi}g8AFpTiLso6w;GkcQ@b(jc#E#+>+ztE17GO=bASy8a2)GOkRN$uyya2`( B5q1Co 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)