buildzr 0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
buildzr/__about__.py ADDED
@@ -0,0 +1 @@
1
+ VERSION = "0.0.1"
buildzr/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ from . import models
2
+ from . import encoders
3
+ from .dsl import interfaces
4
+ from .dsl import expression
@@ -0,0 +1,18 @@
1
+ from .dsl import (
2
+ Workspace,
3
+ SoftwareSystem,
4
+ Person,
5
+ Container,
6
+ Component,
7
+ Group,
8
+ SystemLandscapeView,
9
+ SystemContextView,
10
+ ContainerView,
11
+ ComponentView,
12
+ )
13
+ from .relations import (
14
+ desc,
15
+ With,
16
+ )
17
+ from .explorer import Explorer
18
+ from .expression import Expression