vention-state-machine 0.4.2__tar.gz → 0.4.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vention-state-machine
3
- Version: 0.4.2
3
+ Version: 0.4.5
4
4
  Summary: Declarative state machine framework for machine apps
5
5
  License: Proprietary
6
6
  Author: VentionCo
@@ -8,28 +8,12 @@ Requires-Python: >=3.10,<3.11
8
8
  Classifier: License :: Other/Proprietary License
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Programming Language :: Python :: 3.10
11
- Requires-Dist: annotated-doc (==0.0.4) ; python_version == "3.10"
12
- Requires-Dist: annotated-types (==0.7.0) ; python_version == "3.10"
13
- Requires-Dist: anyio (==4.11.0) ; python_version == "3.10"
14
- Requires-Dist: asyncio (==3.4.3) ; python_version == "3.10"
15
- Requires-Dist: click (==8.1.8) ; python_version == "3.10"
16
- Requires-Dist: colorama (==0.4.6) ; python_version == "3.10" and platform_system == "Windows"
17
- Requires-Dist: coverage (==7.10.7) ; python_version == "3.10"
18
- Requires-Dist: exceptiongroup (==1.3.0) ; python_version == "3.10"
19
- Requires-Dist: fastapi (==0.121.1) ; python_version == "3.10"
20
- Requires-Dist: graphviz (==0.21) ; python_version == "3.10"
21
- Requires-Dist: h11 (==0.16.0) ; python_version == "3.10"
22
- Requires-Dist: idna (==3.11) ; python_version == "3.10"
23
- Requires-Dist: pydantic (==2.12.3) ; python_version == "3.10"
24
- Requires-Dist: pydantic-core (==2.41.4) ; python_version == "3.10"
25
- Requires-Dist: six (==1.17.0) ; python_version == "3.10"
26
- Requires-Dist: sniffio (==1.3.1) ; python_version == "3.10"
27
- Requires-Dist: starlette (==0.48.0) ; python_version == "3.10"
28
- Requires-Dist: transitions (==0.9.3) ; python_version == "3.10"
29
- Requires-Dist: typing-extensions (==4.15.0) ; python_version == "3.10"
30
- Requires-Dist: typing-inspection (==0.4.2) ; python_version == "3.10"
31
- Requires-Dist: uvicorn (==0.35.0) ; python_version == "3.10"
32
- Requires-Dist: vention-communication (==0.3.0) ; python_version == "3.10"
11
+ Requires-Dist: asyncio (>=3.4.3,<4.0.0)
12
+ Requires-Dist: coverage (>=7.10.1,<8.0.0)
13
+ Requires-Dist: graphviz (>=0.21,<0.22)
14
+ Requires-Dist: transitions (>=0.9.3,<0.10.0)
15
+ Requires-Dist: uvicorn (>=0.35.0,<0.36.0)
16
+ Requires-Dist: vention-communication (>=0.3.0,<0.4.0)
33
17
  Description-Content-Type: text/markdown
34
18
 
35
19
  # vention-state-machine
@@ -0,0 +1,23 @@
1
+ [tool.poetry]
2
+ name = "vention-state-machine"
3
+ version = "0.4.5"
4
+ description = "Declarative state machine framework for machine apps"
5
+ authors = [ "VentionCo" ]
6
+ readme = "README.md"
7
+ license = "Proprietary"
8
+
9
+ [[tool.poetry.packages]]
10
+ include = "state_machine"
11
+ from = "src"
12
+
13
+ [tool.poetry.dependencies]
14
+ python = ">=3.10,<3.11"
15
+ asyncio = "^3.4.3"
16
+ uvicorn = "^0.35.0"
17
+ transitions = "^0.9.3"
18
+ graphviz = "^0.21"
19
+ coverage = "^7.10.1"
20
+ vention-communication = "^0.3.0"
21
+
22
+ [tool.poetry.group.dev]
23
+ dependencies = { }
@@ -1,127 +0,0 @@
1
- [tool.poetry]
2
- name = "vention-state-machine"
3
- version = "0.4.2"
4
- description = "Declarative state machine framework for machine apps"
5
- authors = [ "VentionCo" ]
6
- readme = "README.md"
7
- license = "Proprietary"
8
-
9
- [[tool.poetry.packages]]
10
- include = "state_machine"
11
- from = "src"
12
-
13
- [tool.poetry.dependencies]
14
- python = ">=3.10,<3.11"
15
-
16
- [tool.poetry.dependencies.annotated-doc]
17
- version = "0.0.4"
18
- markers = 'python_version == "3.10"'
19
- optional = false
20
-
21
- [tool.poetry.dependencies.annotated-types]
22
- version = "0.7.0"
23
- markers = 'python_version == "3.10"'
24
- optional = false
25
-
26
- [tool.poetry.dependencies.anyio]
27
- version = "4.11.0"
28
- markers = 'python_version == "3.10"'
29
- optional = false
30
-
31
- [tool.poetry.dependencies.asyncio]
32
- version = "3.4.3"
33
- markers = 'python_version == "3.10"'
34
- optional = false
35
-
36
- [tool.poetry.dependencies.click]
37
- version = "8.1.8"
38
- markers = 'python_version == "3.10"'
39
- optional = false
40
-
41
- [tool.poetry.dependencies.colorama]
42
- version = "0.4.6"
43
- markers = 'python_version == "3.10" and platform_system == "Windows"'
44
- optional = false
45
-
46
- [tool.poetry.dependencies.coverage]
47
- version = "7.10.7"
48
- markers = 'python_version == "3.10"'
49
- optional = false
50
-
51
- [tool.poetry.dependencies.exceptiongroup]
52
- version = "1.3.0"
53
- markers = 'python_version == "3.10"'
54
- optional = false
55
-
56
- [tool.poetry.dependencies.fastapi]
57
- version = "0.121.1"
58
- markers = 'python_version == "3.10"'
59
- optional = false
60
-
61
- [tool.poetry.dependencies.graphviz]
62
- version = "0.21"
63
- markers = 'python_version == "3.10"'
64
- optional = false
65
-
66
- [tool.poetry.dependencies.h11]
67
- version = "0.16.0"
68
- markers = 'python_version == "3.10"'
69
- optional = false
70
-
71
- [tool.poetry.dependencies.idna]
72
- version = "3.11"
73
- markers = 'python_version == "3.10"'
74
- optional = false
75
-
76
- [tool.poetry.dependencies.pydantic-core]
77
- version = "2.41.4"
78
- markers = 'python_version == "3.10"'
79
- optional = false
80
-
81
- [tool.poetry.dependencies.pydantic]
82
- version = "2.12.3"
83
- markers = 'python_version == "3.10"'
84
- optional = false
85
-
86
- [tool.poetry.dependencies.six]
87
- version = "1.17.0"
88
- markers = 'python_version == "3.10"'
89
- optional = false
90
-
91
- [tool.poetry.dependencies.sniffio]
92
- version = "1.3.1"
93
- markers = 'python_version == "3.10"'
94
- optional = false
95
-
96
- [tool.poetry.dependencies.starlette]
97
- version = "0.48.0"
98
- markers = 'python_version == "3.10"'
99
- optional = false
100
-
101
- [tool.poetry.dependencies.transitions]
102
- version = "0.9.3"
103
- markers = 'python_version == "3.10"'
104
- optional = false
105
-
106
- [tool.poetry.dependencies.typing-extensions]
107
- version = "4.15.0"
108
- markers = 'python_version == "3.10"'
109
- optional = false
110
-
111
- [tool.poetry.dependencies.typing-inspection]
112
- version = "0.4.2"
113
- markers = 'python_version == "3.10"'
114
- optional = false
115
-
116
- [tool.poetry.dependencies.uvicorn]
117
- version = "0.35.0"
118
- markers = 'python_version == "3.10"'
119
- optional = false
120
-
121
- [tool.poetry.dependencies.vention-communication]
122
- version = "0.3.0"
123
- markers = 'python_version == "3.10"'
124
- optional = false
125
-
126
- [tool.poetry.group.dev]
127
- dependencies = { }