diff --git a/conf/apps/apps.yaml b/conf/apps/apps.yaml index 3b2c7a0..e135ad9 100644 --- a/conf/apps/apps.yaml +++ b/conf/apps/apps.yaml @@ -6,4 +6,10 @@ simple_app: module: simple class: SimpleApp dependencies: - - hello_world \ No newline at end of file + - hello_world + +Perimeter: + dependencies: + - utils + - statemachine + - hal diff --git a/conf/apps/deep/arbitrary/path/apps.yaml b/conf/apps/deep/arbitrary/path/apps.yaml new file mode 100644 index 0000000..47301f2 --- /dev/null +++ b/conf/apps/deep/arbitrary/path/apps.yaml @@ -0,0 +1,11 @@ +rules: + module: rules + global: true + +statemachine: + module: statemachine + global: true + +hal: + module: hal + global: true diff --git a/conf/apps/deep/arbitrary/path/hal.py b/conf/apps/deep/arbitrary/path/hal.py new file mode 100644 index 0000000..c331a4c --- /dev/null +++ b/conf/apps/deep/arbitrary/path/hal.py @@ -0,0 +1,2 @@ +class HAL: + ... \ No newline at end of file diff --git a/conf/apps/deep/arbitrary/path/rules.py b/conf/apps/deep/arbitrary/path/rules.py new file mode 100644 index 0000000..59f68fe --- /dev/null +++ b/conf/apps/deep/arbitrary/path/rules.py @@ -0,0 +1,5 @@ +class Rule1: + ... + +class Rule2: + ... diff --git a/conf/apps/deep/arbitrary/path/statemachine.py b/conf/apps/deep/arbitrary/path/statemachine.py new file mode 100644 index 0000000..d58adce --- /dev/null +++ b/conf/apps/deep/arbitrary/path/statemachine.py @@ -0,0 +1,2 @@ +class StateMachine: + ...