pyfcstm 0.1.0__tar.gz → 0.1.1__tar.gz

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.
Files changed (58) hide show
  1. {pyfcstm-0.1.0/pyfcstm.egg-info → pyfcstm-0.1.1}/PKG-INFO +8 -8
  2. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/config/meta.py +1 -1
  3. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/model/model.py +1 -1
  4. {pyfcstm-0.1.0 → pyfcstm-0.1.1/pyfcstm.egg-info}/PKG-INFO +8 -8
  5. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/LICENSE +0 -0
  6. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/MANIFEST.in +0 -0
  7. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/README.md +0 -0
  8. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/__init__.py +0 -0
  9. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/__main__.py +0 -0
  10. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/config/__init__.py +0 -0
  11. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/__init__.py +0 -0
  12. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/error.py +0 -0
  13. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/Grammar.g4 +0 -0
  14. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/Grammar.interp +0 -0
  15. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/Grammar.tokens +0 -0
  16. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/GrammarLexer.interp +0 -0
  17. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/GrammarLexer.py +0 -0
  18. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/GrammarLexer.tokens +0 -0
  19. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/GrammarListener.py +0 -0
  20. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/GrammarParser.py +0 -0
  21. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/grammar/__init__.py +0 -0
  22. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/listener.py +0 -0
  23. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/node.py +0 -0
  24. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/dsl/parse.py +0 -0
  25. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/entry/__init__.py +0 -0
  26. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/entry/base.py +0 -0
  27. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/entry/cli.py +0 -0
  28. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/entry/dispatch.py +0 -0
  29. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/entry/generate.py +0 -0
  30. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/entry/plantuml.py +0 -0
  31. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/model/__init__.py +0 -0
  32. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/model/base.py +0 -0
  33. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/model/expr.py +0 -0
  34. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/render/__init__.py +0 -0
  35. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/render/env.py +0 -0
  36. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/render/expr.py +0 -0
  37. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/render/func.py +0 -0
  38. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/render/render.py +0 -0
  39. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/__init__.py +0 -0
  40. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/binary.py +0 -0
  41. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/decode.py +0 -0
  42. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/doc.py +0 -0
  43. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/jinja2.py +0 -0
  44. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/json.py +0 -0
  45. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/text.py +0 -0
  46. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm/utils/validate.py +0 -0
  47. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm.egg-info/SOURCES.txt +0 -0
  48. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm.egg-info/dependency_links.txt +0 -0
  49. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm.egg-info/entry_points.txt +0 -0
  50. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm.egg-info/requires.txt +0 -0
  51. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/pyfcstm.egg-info/top_level.txt +0 -0
  52. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/requirements-build.txt +0 -0
  53. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/requirements-dev.txt +0 -0
  54. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/requirements-doc.txt +0 -0
  55. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/requirements-test.txt +0 -0
  56. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/requirements.txt +0 -0
  57. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/setup.cfg +0 -0
  58. {pyfcstm-0.1.0 → pyfcstm-0.1.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyfcstm
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A Python framework for parsing finite state machine DSL and generating executable code in multiple target languages.
5
5
  Home-page: https://github.com/hansbug/pyfcstm
6
6
  Author: HansBug
@@ -91,13 +91,6 @@ Requires-Dist: ipykernel>=6.15; extra == "doc"
91
91
  Requires-Dist: py-cpuinfo>=8.0.0; extra == "doc"
92
92
  Requires-Dist: click>=7.0.0; extra == "doc"
93
93
  Requires-Dist: pandas; extra == "doc"
94
- Provides-Extra: build
95
- Requires-Dist: pyinstaller>=4.7; extra == "build"
96
- Requires-Dist: setuptools; extra == "build"
97
- Requires-Dist: hbutils; extra == "build"
98
- Provides-Extra: dev
99
- Requires-Dist: ruff; extra == "dev"
100
- Requires-Dist: antlr4-python3-runtime==4.9.3; extra == "dev"
101
94
  Provides-Extra: test
102
95
  Requires-Dist: coverage>=5; extra == "test"
103
96
  Requires-Dist: mock>=4.0.3; extra == "test"
@@ -114,6 +107,13 @@ Requires-Dist: easydict<2,>=1.7; extra == "test"
114
107
  Requires-Dist: testtools>=2; extra == "test"
115
108
  Requires-Dist: where>=1.0.2; extra == "test"
116
109
  Requires-Dist: natsort; extra == "test"
110
+ Provides-Extra: dev
111
+ Requires-Dist: ruff; extra == "dev"
112
+ Requires-Dist: antlr4-python3-runtime==4.9.3; extra == "dev"
113
+ Provides-Extra: build
114
+ Requires-Dist: pyinstaller>=4.7; extra == "build"
115
+ Requires-Dist: setuptools; extra == "build"
116
+ Requires-Dist: hbutils; extra == "build"
117
117
 
118
118
  # pyfcstm
119
119
 
@@ -7,7 +7,7 @@ Overview:
7
7
  __TITLE__ = 'pyfcstm'
8
8
 
9
9
  #: Version of this project.
10
- __VERSION__ = '0.1.0'
10
+ __VERSION__ = '0.1.1'
11
11
 
12
12
  #: Short description of the project, will be included in ``setup.py``.
13
13
  __DESCRIPTION__ = ('A Python framework for parsing finite state machine DSL and '
@@ -1147,7 +1147,7 @@ def parse_dsl_node_to_state_machine(dnode: dsl_nodes.StateMachineDSLProgram) ->
1147
1147
 
1148
1148
  transitions = current_state.transitions
1149
1149
  for subnode in node.substates:
1150
- _inner_force_transitions = [*force_transitions]
1150
+ _inner_force_transitions = []
1151
1151
  for from_state, to_state, my_event_id, trans_event, condition_expr, guard in force_transition_tuples_to_inherit:
1152
1152
  if from_state is dsl_nodes.ALL or from_state == subnode.name:
1153
1153
  transitions.append(Transition(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyfcstm
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A Python framework for parsing finite state machine DSL and generating executable code in multiple target languages.
5
5
  Home-page: https://github.com/hansbug/pyfcstm
6
6
  Author: HansBug
@@ -91,13 +91,6 @@ Requires-Dist: ipykernel>=6.15; extra == "doc"
91
91
  Requires-Dist: py-cpuinfo>=8.0.0; extra == "doc"
92
92
  Requires-Dist: click>=7.0.0; extra == "doc"
93
93
  Requires-Dist: pandas; extra == "doc"
94
- Provides-Extra: build
95
- Requires-Dist: pyinstaller>=4.7; extra == "build"
96
- Requires-Dist: setuptools; extra == "build"
97
- Requires-Dist: hbutils; extra == "build"
98
- Provides-Extra: dev
99
- Requires-Dist: ruff; extra == "dev"
100
- Requires-Dist: antlr4-python3-runtime==4.9.3; extra == "dev"
101
94
  Provides-Extra: test
102
95
  Requires-Dist: coverage>=5; extra == "test"
103
96
  Requires-Dist: mock>=4.0.3; extra == "test"
@@ -114,6 +107,13 @@ Requires-Dist: easydict<2,>=1.7; extra == "test"
114
107
  Requires-Dist: testtools>=2; extra == "test"
115
108
  Requires-Dist: where>=1.0.2; extra == "test"
116
109
  Requires-Dist: natsort; extra == "test"
110
+ Provides-Extra: dev
111
+ Requires-Dist: ruff; extra == "dev"
112
+ Requires-Dist: antlr4-python3-runtime==4.9.3; extra == "dev"
113
+ Provides-Extra: build
114
+ Requires-Dist: pyinstaller>=4.7; extra == "build"
115
+ Requires-Dist: setuptools; extra == "build"
116
+ Requires-Dist: hbutils; extra == "build"
117
117
 
118
118
  # pyfcstm
119
119
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes