mls-parser 0.0.3__py3-none-any.whl → 0.0.4__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.
- mls_parser/__init__.py +1 -1
- mls_parser/layout_visitor.py +9 -9
- {mls_parser-0.0.3.dist-info → mls_parser-0.0.4.dist-info}/METADATA +1 -1
- mls_parser-0.0.4.dist-info/RECORD +13 -0
- {mls_parser-0.0.3.dist-info → mls_parser-0.0.4.dist-info}/WHEEL +1 -1
- mls_parser-0.0.3.dist-info/RECORD +0 -13
- {mls_parser-0.0.3.dist-info → mls_parser-0.0.4.dist-info}/LICENSE +0 -0
- {mls_parser-0.0.3.dist-info → mls_parser-0.0.4.dist-info}/entry_points.txt +0 -0
- {mls_parser-0.0.3.dist-info → mls_parser-0.0.4.dist-info}/top_level.txt +0 -0
mls_parser/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = "0.0.
|
1
|
+
version = "0.0.4"
|
mls_parser/layout_visitor.py
CHANGED
@@ -10,17 +10,17 @@ from mls_parser.exceptions import (ConflictingGraftFloat, MultipleGraftsInSameBr
|
|
10
10
|
DiagramLayout = namedtuple('DiagramLayout', 'layout_spec node_placement connector_placement')
|
11
11
|
LayoutSpec = namedtuple('LayoutSpec', 'dtype pres notation color sheet orientation frame frame_presentation padding')
|
12
12
|
|
13
|
-
class NodeFace(Enum):
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
13
|
+
# class NodeFace(Enum):
|
14
|
+
# """
|
15
|
+
# Values are multiplied by absolute distance to get an x or y coordinate.
|
16
|
+
# """
|
17
|
+
# TOP = 0
|
18
|
+
# BOTTOM = 1
|
19
|
+
# RIGHT = 2
|
20
|
+
# LEFT = 3
|
21
21
|
|
22
22
|
|
23
|
-
face_map = {'r':
|
23
|
+
face_map = {'r': 'RIGHT', 'l': 'LEFT', 't': 'TOP', 'b': 'BOTTOM'}
|
24
24
|
|
25
25
|
|
26
26
|
class LayoutVisitor(PTNodeVisitor):
|
@@ -0,0 +1,13 @@
|
|
1
|
+
mls_parser/__init__.py,sha256=bhi15cb3KVl9tPnATerbyVFoGUNgqJ4lEa48yJbRVCY,18
|
2
|
+
mls_parser/__main__.py,sha256=NkowelWxc7cc6HRmcRRcWMdMShy0nKC4uO4Rm9EuB-g,1877
|
3
|
+
mls_parser/exceptions.py,sha256=hJx2OZPTEFOS4RqZJfH0meqV4ZzH7iBP7O9fXLV_McI,3059
|
4
|
+
mls_parser/layout.peg,sha256=BBAeHYR5hBgThUtCej5FmiphI3DlV_1kGJh4NgvnFLo,6019
|
5
|
+
mls_parser/layout_parser.py,sha256=fahdd8YeyJybJXZzz-lDoMi202Sv5UFJa0oGGmMiYcA,4854
|
6
|
+
mls_parser/layout_visitor.py,sha256=fyqYFn__UfaZWZa2rfBTJfEVscadDT5MXw9TU8bX3_Q,17996
|
7
|
+
mls_parser/log.conf,sha256=EL_8Pn8A7gz1IV_AODmgtQdBsOREtmhaoomIuAxMSLk,867
|
8
|
+
mls_parser-0.0.4.dist-info/LICENSE,sha256=kL0xVrwl2i3Pk9mQXAVAPANCTaLGGOsoXgvqW7TBs20,1072
|
9
|
+
mls_parser-0.0.4.dist-info/METADATA,sha256=-EqHIKUGtxXtzRDagMYi8t0BexNoN_81232GBcY7AIU,4032
|
10
|
+
mls_parser-0.0.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
11
|
+
mls_parser-0.0.4.dist-info/entry_points.txt,sha256=HsIgu1_OJw84-8oMi7zGKznq7oQgpviMC_HL46vsjVo,49
|
12
|
+
mls_parser-0.0.4.dist-info/top_level.txt,sha256=s_pWxPSrMvumqwFDqPVWrajhZO2giOrZg9acHgn6h8Q,11
|
13
|
+
mls_parser-0.0.4.dist-info/RECORD,,
|
@@ -1,13 +0,0 @@
|
|
1
|
-
mls_parser/__init__.py,sha256=RRD0ADRcVyDY2lO9M6qp2acyRCweTNRWI9gN-ZwdERY,18
|
2
|
-
mls_parser/__main__.py,sha256=NkowelWxc7cc6HRmcRRcWMdMShy0nKC4uO4Rm9EuB-g,1877
|
3
|
-
mls_parser/exceptions.py,sha256=hJx2OZPTEFOS4RqZJfH0meqV4ZzH7iBP7O9fXLV_McI,3059
|
4
|
-
mls_parser/layout.peg,sha256=BBAeHYR5hBgThUtCej5FmiphI3DlV_1kGJh4NgvnFLo,6019
|
5
|
-
mls_parser/layout_parser.py,sha256=fahdd8YeyJybJXZzz-lDoMi202Sv5UFJa0oGGmMiYcA,4854
|
6
|
-
mls_parser/layout_visitor.py,sha256=krXYZHIs0UkwJ446fYEmyLs448Iq5nPmOa2QRIh0rHI,18008
|
7
|
-
mls_parser/log.conf,sha256=EL_8Pn8A7gz1IV_AODmgtQdBsOREtmhaoomIuAxMSLk,867
|
8
|
-
mls_parser-0.0.3.dist-info/LICENSE,sha256=kL0xVrwl2i3Pk9mQXAVAPANCTaLGGOsoXgvqW7TBs20,1072
|
9
|
-
mls_parser-0.0.3.dist-info/METADATA,sha256=UcjfPpYuDFSlwMYZDovoJypyokmpWfUakuBpO2_2Tkw,4032
|
10
|
-
mls_parser-0.0.3.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
11
|
-
mls_parser-0.0.3.dist-info/entry_points.txt,sha256=HsIgu1_OJw84-8oMi7zGKznq7oQgpviMC_HL46vsjVo,49
|
12
|
-
mls_parser-0.0.3.dist-info/top_level.txt,sha256=s_pWxPSrMvumqwFDqPVWrajhZO2giOrZg9acHgn6h8Q,11
|
13
|
-
mls_parser-0.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|