Here is what I got when running isek example list.
I think the problem is that when installing isek using pip3 install isek, the example folder is excluded.
Then when I invoke the example command, isek is trying to find the example folder, but fails.
|
def list(): |
|
"""List available example scripts""" |
|
examples_dir = Path(__file__).parent.parent / "examples" |
|
examples = [ |
|
f.stem |
|
for f in examples_dir.glob("*.py") |
|
if f.name != "__init__.py" and not f.name.startswith("_") |
|
] |
|
|
|
click.echo("Available examples:") |
|
for name in sorted(examples): |
Any idea about how to address this issue? I may help if you have some suggestions.
Here is what I got when running
isek example list.I think the problem is that when installing isek using
pip3 install isek, the example folder is excluded.Then when I invoke the example command, isek is trying to find the example folder, but fails.
ISEK/isek/cli.py
Lines 156 to 166 in 93a7e0e
Any idea about how to address this issue? I may help if you have some suggestions.