serqet 0.0.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.
- serqet-0.0.1/.gitignore +5 -0
- serqet-0.0.1/PKG-INFO +41 -0
- serqet-0.0.1/README.md +24 -0
- serqet-0.0.1/pyproject.toml +28 -0
- serqet-0.0.1/src/serqet/__init__.py +9 -0
serqet-0.0.1/.gitignore
ADDED
serqet-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: serqet
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Client SDK for the Serqet platform — connect sensors and robots to a hosted learning substrate.
|
|
5
|
+
Project-URL: Homepage, https://serqet.sh
|
|
6
|
+
Author: Brian Miedlar
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: embodied,iot,learning,robotics,sdk,sensors
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering
|
|
14
|
+
Classifier: Topic :: System :: Hardware
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# serqet
|
|
19
|
+
|
|
20
|
+
Client SDK for the **Serqet** platform — connect sensors and robots to a hosted learning substrate.
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install serqet
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
> **Status: name reservation.** The SDK is not published yet. This release exists so the package name
|
|
27
|
+
> matches the platform when it ships. Nothing here does anything useful yet.
|
|
28
|
+
|
|
29
|
+
## What it will do
|
|
30
|
+
|
|
31
|
+
Point a camera, a sensor, or a robot at the platform and it learns *your* specific thing — no dataset,
|
|
32
|
+
no training pipeline, no ML expertise. It learns from single exposures, reports what it doesn't know
|
|
33
|
+
rather than guessing, and consolidates what it learned while it sleeps.
|
|
34
|
+
|
|
35
|
+
## Links
|
|
36
|
+
|
|
37
|
+
- [serqet.sh](https://serqet.sh)
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT
|
serqet-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# serqet
|
|
2
|
+
|
|
3
|
+
Client SDK for the **Serqet** platform — connect sensors and robots to a hosted learning substrate.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install serqet
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
> **Status: name reservation.** The SDK is not published yet. This release exists so the package name
|
|
10
|
+
> matches the platform when it ships. Nothing here does anything useful yet.
|
|
11
|
+
|
|
12
|
+
## What it will do
|
|
13
|
+
|
|
14
|
+
Point a camera, a sensor, or a robot at the platform and it learns *your* specific thing — no dataset,
|
|
15
|
+
no training pipeline, no ML expertise. It learns from single exposures, reports what it doesn't know
|
|
16
|
+
rather than guessing, and consolidates what it learned while it sleeps.
|
|
17
|
+
|
|
18
|
+
## Links
|
|
19
|
+
|
|
20
|
+
- [serqet.sh](https://serqet.sh)
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
|
|
24
|
+
MIT
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "serqet"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Client SDK for the Serqet platform — connect sensors and robots to a hosted learning substrate."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Brian Miedlar" }]
|
|
13
|
+
keywords = ["robotics", "sensors", "learning", "sdk", "iot", "embodied"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Scientific/Engineering",
|
|
20
|
+
"Topic :: System :: Hardware",
|
|
21
|
+
]
|
|
22
|
+
dependencies = []
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://serqet.sh"
|
|
26
|
+
|
|
27
|
+
[tool.hatch.build.targets.wheel]
|
|
28
|
+
packages = ["src/serqet"]
|