Fix package
Fix python package + relative imports:
-
packages=["petenv"] won't include subdirectories. Subdir can be added manually to the list or a better option is to use the find_packages function.
-
"from plc import PLC" will fail if you are not in the proper directory. You should use either:
- from .plc import PLC
or
- from petenv.gui.plc import PLC