vention-state-machine 0.4.4__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.4
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,130 +0,0 @@
1
- [tool.poetry]
2
- name = "vention-state-machine"
3
- version = "0.4.4"
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.build]
14
- generate-setup-file = false
15
-
16
- [tool.poetry.dependencies]
17
- python = ">=3.10,<3.11"
18
-
19
- [tool.poetry.dependencies.annotated-doc]
20
- version = "0.0.4"
21
- markers = 'python_version == "3.10"'
22
- optional = false
23
-
24
- [tool.poetry.dependencies.annotated-types]
25
- version = "0.7.0"
26
- markers = 'python_version == "3.10"'
27
- optional = false
28
-
29
- [tool.poetry.dependencies.anyio]
30
- version = "4.11.0"
31
- markers = 'python_version == "3.10"'
32
- optional = false
33
-
34
- [tool.poetry.dependencies.asyncio]
35
- version = "3.4.3"
36
- markers = 'python_version == "3.10"'
37
- optional = false
38
-
39
- [tool.poetry.dependencies.click]
40
- version = "8.1.8"
41
- markers = 'python_version == "3.10"'
42
- optional = false
43
-
44
- [tool.poetry.dependencies.colorama]
45
- version = "0.4.6"
46
- markers = 'python_version == "3.10" and platform_system == "Windows"'
47
- optional = false
48
-
49
- [tool.poetry.dependencies.coverage]
50
- version = "7.10.7"
51
- markers = 'python_version == "3.10"'
52
- optional = false
53
-
54
- [tool.poetry.dependencies.exceptiongroup]
55
- version = "1.3.0"
56
- markers = 'python_version == "3.10"'
57
- optional = false
58
-
59
- [tool.poetry.dependencies.fastapi]
60
- version = "0.121.1"
61
- markers = 'python_version == "3.10"'
62
- optional = false
63
-
64
- [tool.poetry.dependencies.graphviz]
65
- version = "0.21"
66
- markers = 'python_version == "3.10"'
67
- optional = false
68
-
69
- [tool.poetry.dependencies.h11]
70
- version = "0.16.0"
71
- markers = 'python_version == "3.10"'
72
- optional = false
73
-
74
- [tool.poetry.dependencies.idna]
75
- version = "3.11"
76
- markers = 'python_version == "3.10"'
77
- optional = false
78
-
79
- [tool.poetry.dependencies.pydantic-core]
80
- version = "2.41.4"
81
- markers = 'python_version == "3.10"'
82
- optional = false
83
-
84
- [tool.poetry.dependencies.pydantic]
85
- version = "2.12.3"
86
- markers = 'python_version == "3.10"'
87
- optional = false
88
-
89
- [tool.poetry.dependencies.six]
90
- version = "1.17.0"
91
- markers = 'python_version == "3.10"'
92
- optional = false
93
-
94
- [tool.poetry.dependencies.sniffio]
95
- version = "1.3.1"
96
- markers = 'python_version == "3.10"'
97
- optional = false
98
-
99
- [tool.poetry.dependencies.starlette]
100
- version = "0.48.0"
101
- markers = 'python_version == "3.10"'
102
- optional = false
103
-
104
- [tool.poetry.dependencies.transitions]
105
- version = "0.9.3"
106
- markers = 'python_version == "3.10"'
107
- optional = false
108
-
109
- [tool.poetry.dependencies.typing-extensions]
110
- version = "4.15.0"
111
- markers = 'python_version == "3.10"'
112
- optional = false
113
-
114
- [tool.poetry.dependencies.typing-inspection]
115
- version = "0.4.2"
116
- markers = 'python_version == "3.10"'
117
- optional = false
118
-
119
- [tool.poetry.dependencies.uvicorn]
120
- version = "0.35.0"
121
- markers = 'python_version == "3.10"'
122
- optional = false
123
-
124
- [tool.poetry.dependencies.vention-communication]
125
- version = "0.3.0"
126
- markers = 'python_version == "3.10"'
127
- optional = false
128
-
129
- [tool.poetry.group.dev]
130
- dependencies = { }