mirror of
https://github.com/Cheviiot/Vual.git
synced 2026-08-03 15:57:25 +00:00
v0.1.0
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Dev launcher for Vual."""
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# All pycache in one place
|
||||
sys.pycache_prefix = str(Path(__file__).resolve().parent / ".pycache")
|
||||
|
||||
sys.path.insert(0, str(Path(__file__).resolve().parent / "src"))
|
||||
|
||||
from vual.__main__ import main
|
||||
|
||||
main()
|
||||
Reference in New Issue
Block a user