emmental/tools/list_install_dirs.py
Anna Schumaker b0838beb6f Create install and uninstall targets in the Makefile
And create helper scripts under tools/

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2021-07-26 17:52:13 -04:00

9 lines
173 B
Python
Executable File

#!/usr/bin/python
import pathlib
exclude = [ ".git", "data", "tools" ]
for p in pathlib.Path(".").iterdir():
if p.is_dir() and not str(p) in exclude:
print(p)