##// END OF EJS Templates
pyproject.toml, setup.py: Declare backend-path (#14313)...
pyproject.toml, setup.py: Declare backend-path (#14313) Replacing `sys.path.insert(0, ".")` in `setup.py` by declaring a custom PEP-517 build system.

File last commit:

r20547:8f4e2b41
r28603:643c75d0 merge
Show More
list_subdirs.ipy
6 lines | 194 B | text/plain | TextLexer
# A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
if d != '__pycache__/':
display(FileLinks(d))