fix packaging for f37 (4/n)
[plcapi.git] / PLC / __init__.py
index ea834ec..7b7fc41 100644 (file)
@@ -1 +1,2 @@
-all = 'Addresses AddressTypes API Attributes Auth BootStates Config Debug Faults Keys KeyTypes Method NetworkMethods NetworkTypes NodeGroups NodeNetworks Nodes Parameter PCUs Persons POD PostgreSQL Roles Sites SliceAttributes SliceInstantiations Slices Table'.split()
+import os
+all = [i[:-3] for i in os.listdir(os.path.dirname(__file__)) if i.endswith(".py") and not i.startswith(".")]