banish .DS_Store
This commit is contained in:
parent
bc616fd3bf
commit
0eddf12931
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue