banish .DS_Store
This commit is contained in:
parent
bc616fd3bf
commit
0eddf12931
|
|
@ -1,9 +1,15 @@
|
||||||
|
# Hidden files
|
||||||
|
.DS_Store
|
||||||
|
*.vscode/
|
||||||
|
|
||||||
|
# Python files
|
||||||
venv/
|
venv/
|
||||||
manta.egg-info/
|
manta.egg-info/
|
||||||
.pytest_cache
|
.pytest_cache
|
||||||
__pycache__/
|
__pycache__/
|
||||||
build/
|
build/
|
||||||
|
|
||||||
|
# Miscellaneous file types
|
||||||
*.v
|
*.v
|
||||||
*.sv
|
*.sv
|
||||||
*.vcd
|
*.vcd
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@ from .manta import Manta
|
||||||
from warnings import warn
|
from warnings import warn
|
||||||
from sys import argv
|
from sys import argv
|
||||||
from pkg_resources import get_distribution
|
from pkg_resources import get_distribution
|
||||||
version = "v" + get_distribution('manta').version
|
|
||||||
|
version = "v" + get_distribution("manta").version
|
||||||
|
|
||||||
logo = f"""
|
logo = f"""
|
||||||
\033[96m (\.-./)
|
\033[96m (\.-./)
|
||||||
|
|
@ -26,6 +27,7 @@ Supported commands:
|
||||||
help, ray display this splash screen (hehe...splash screen)
|
help, ray display this splash screen (hehe...splash screen)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
def help():
|
def help():
|
||||||
print(logo)
|
print(logo)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue