docs: scaffold polisher-control foundation
This commit is contained in:
11
scripts/print_tree.py
Normal file
11
scripts/print_tree.py
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python3
|
||||
from pathlib import Path
|
||||
|
||||
ROOT = Path(__file__).resolve().parents[1]
|
||||
for path in sorted(ROOT.rglob("*")):
|
||||
if ".git" in path.parts or "__pycache__" in path.parts:
|
||||
continue
|
||||
rel = path.relative_to(ROOT)
|
||||
if len(rel.parts) > 4:
|
||||
continue
|
||||
print(rel)
|
||||
Reference in New Issue
Block a user