lamquant-abir 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,19 @@
1
+ Metadata-Version: 2.5
2
+ Name: lamquant-abir
3
+ Version: 0.0.0
4
+ Summary: ABIR, the Atomic Biosignal Intermediate Representation: the data model LamQuant is built on.
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-abir
14
+
15
+ ABIR, the Atomic Biosignal Intermediate Representation: the data model LamQuant is built on.
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.
@@ -0,0 +1,7 @@
1
+ # lamquant-abir
2
+
3
+ ABIR, the Atomic Biosignal Intermediate Representation: the data model LamQuant is built on.
4
+
5
+ **This 0.0.0 release reserves the name.** It ships no implementation.
6
+ The working software is published later from the LamQuant project at
7
+ https://github.com/Quitetall.
@@ -0,0 +1,14 @@
1
+ """ABIR, the Atomic Biosignal Intermediate Representation: the data model LamQuant is built on.
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-abir 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-abir"
7
+ version = "0.0.0"
8
+ description = "ABIR, the Atomic Biosignal Intermediate Representation: the data model LamQuant is built on."
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_abir"]