flowsint 0.1.0__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.
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.3
2
+ Name: flowsint
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Requires-Dist: flowsint-core-next
6
+ Requires-Dist: flowsint-core
7
+ Requires-Dist: flowsint-enrichers-next
8
+ Requires-Dist: flowsint-enrichers
9
+ Requires-Dist: flowsint-types-next
10
+ Requires-Python: >=3.12
11
+ Description-Content-Type: text/markdown
12
+
File without changes
@@ -0,0 +1,33 @@
1
+ [project]
2
+ name = "flowsint"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = [
8
+ "flowsint-core-next",
9
+ "flowsint-core",
10
+ "flowsint-enrichers-next",
11
+ "flowsint-enrichers",
12
+ "flowsint-types-next",
13
+ ]
14
+
15
+ [tool.uv.sources]
16
+ flowsint-core-next = { workspace = true }
17
+ flowsint-core = { path = "../flowsint-core", editable = true }
18
+ flowsint-enrichers-next = { workspace = true }
19
+ flowsint-enrichers = { path = "../flowsint-enrichers", editable = true }
20
+ flowsint-types-next = { workspace = true }
21
+ #flowsint_types = { path = "../../flowsint-types", editable = true }
22
+
23
+ [tool.uv.workspace]
24
+ members = [
25
+ "packages/*",
26
+ ]
27
+ exclude = [
28
+ "packages/flowsint-client-asyncio",
29
+ ]
30
+
31
+ [build-system]
32
+ requires = ["uv_build>=0.10.6,<0.11.0"]
33
+ build-backend = "uv_build"
@@ -0,0 +1,3 @@
1
+ from pkgutil import extend_path
2
+
3
+ __path__ = extend_path(__path__, __name__)
@@ -0,0 +1 @@
1
+ print('root flowsint __main__.py')