Hi, I just noticed that the main SLTev file doesn't have the .py suffix. This can cause problems when importing it as a Python module.
I don't think this is the right way to install executables. The best way is using "entry points", see here.
Example:
Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.
Hi, I just noticed that the main SLTev file doesn't have the .py suffix. This can cause problems when importing it as a Python module. I don't think this is the right way to install executables. The best way is using "entry points", see here. Example:
Also from Python standards: