avrvx 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.
avrvx-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: avrvx
3
+ Version: 0.0.1
4
+ Summary: AverVOX — LLM Speech Bridge CLI
5
+ Author: Carl E. Hartung
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
avrvx-0.0.1/README.md ADDED
File without changes
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "avrvx"
7
+ version = "0.0.1"
8
+ description = "AverVOX — LLM Speech Bridge CLI"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ authors = [{ name = "Carl E. Hartung" }]
12
+ license = { text = "MIT" }
13
+
14
+ [project.scripts]
15
+ avrvx = "avrvx.__main__:main"
avrvx-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ __version__ = "0.0.1"
2
+
@@ -0,0 +1,3 @@
1
+ def main() -> None:
2
+ print("avrvx placeholder CLI for AverVOX")
3
+
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: avrvx
3
+ Version: 0.0.1
4
+ Summary: AverVOX — LLM Speech Bridge CLI
5
+ Author: Carl E. Hartung
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/avrvx/__init__.py
4
+ src/avrvx/__main__.py
5
+ src/avrvx.egg-info/PKG-INFO
6
+ src/avrvx.egg-info/SOURCES.txt
7
+ src/avrvx.egg-info/dependency_links.txt
8
+ src/avrvx.egg-info/entry_points.txt
9
+ src/avrvx.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ avrvx = avrvx.__main__:main
@@ -0,0 +1 @@
1
+ avrvx