lamquant 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.
- lamquant-0.0.0/PKG-INFO +19 -0
- lamquant-0.0.0/README.md +7 -0
- lamquant-0.0.0/lamquant/__init__.py +14 -0
- lamquant-0.0.0/pyproject.toml +20 -0
lamquant-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: lamquant
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: The LamQuant biosignal platform: SDK, codecs and firmware suite.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Quitetall
|
|
6
|
+
Author: Brian Lam
|
|
7
|
+
License-Expression: AGPL-3.0-or-later
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# lamquant
|
|
14
|
+
|
|
15
|
+
The LamQuant biosignal platform: SDK, codecs and firmware suite.
|
|
16
|
+
|
|
17
|
+
**This 0.0.0 release reserves the name.** It ships no implementation.
|
|
18
|
+
The working software is published later from the LamQuant project at
|
|
19
|
+
https://github.com/Quitetall.
|
lamquant-0.0.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""The LamQuant biosignal platform: SDK, codecs and firmware suite.
|
|
2
|
+
|
|
3
|
+
Name reserved. This release carries no implementation; the working software
|
|
4
|
+
is released later from the LamQuant project.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.0"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def __getattr__(attribute: str):
|
|
11
|
+
raise AttributeError(
|
|
12
|
+
"lamquant 0.0.0 is a reserved name with no implementation yet; "
|
|
13
|
+
"see https://github.com/Quitetall for the project"
|
|
14
|
+
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "lamquant"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "The LamQuant biosignal platform: SDK, codecs and firmware suite."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "AGPL-3.0-or-later"
|
|
12
|
+
authors = [{ name = "Brian Lam" }]
|
|
13
|
+
classifiers = ["Development Status :: 1 - Planning", "Programming Language :: Python :: 3"]
|
|
14
|
+
dependencies = []
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/Quitetall"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["lamquant"]
|