banish .DS_Store

This commit is contained in:
Fischer Moseley 2023-12-28 14:27:59 -08:00
parent bc616fd3bf
commit 0eddf12931
3 changed files with 9 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

6
.gitignore vendored
View File

@ -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

View File

@ -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)