streamweave 0.0.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,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: streamweave
|
|
3
|
+
Version: 0.0.0.0
|
|
4
|
+
Summary: Scientific instrument data harvesting and management system
|
|
5
|
+
Project-URL: Repository, https://github.com/datasophos/streamweave
|
|
6
|
+
Author-email: Joshua Taillon <josh@datasophos.co>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# StreamWeave
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<img src="_streamweave.png" width="300">
|
|
18
|
+
<br>
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
Coming soon...
|
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "streamweave"
|
|
7
|
+
version = "0.0.0.0"
|
|
8
|
+
description = "Scientific instrument data harvesting and management system"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Joshua Taillon", email = "josh@datasophos.co" },
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Repository = "https://github.com/datasophos/streamweave"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/streamweave"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Pica - Scientific instrument data harvesting system."""
|