lwyrm 0.1.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.
lwyrm-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: lwyrm
3
+ Version: 0.1.0
4
+ Summary: Alias for lindwyrm -- installs the agent whose CLI command is `lwyrm`
5
+ Project-URL: Homepage, https://github.com/miron404/lindwyrm
6
+ Project-URL: Source, https://github.com/miron404/lindwyrm
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: lindwyrm>=0.1.0
14
+
15
+ # lwyrm
16
+
17
+ This is an alias package. The actual project is
18
+ **[lindwyrm](https://pypi.org/project/lindwyrm/)** — a minimal,
19
+ dependency-light CLI coding agent that talks directly to any Anthropic- or
20
+ OpenAI-compatible provider.
21
+
22
+ `lwyrm` is the name of the command, so this package exists for people who
23
+ reach for `pip install lwyrm` first. It has no code of its own; it simply
24
+ depends on `lindwyrm`, which ships the `lwyrm` command.
25
+
26
+ ```bash
27
+ pip install lwyrm # equivalent to: pip install lindwyrm
28
+ lwyrm --help
29
+ ```
30
+
31
+ Source and documentation: <https://github.com/miron404/lindwyrm>
lwyrm-0.1.0/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # lwyrm
2
+
3
+ This is an alias package. The actual project is
4
+ **[lindwyrm](https://pypi.org/project/lindwyrm/)** — a minimal,
5
+ dependency-light CLI coding agent that talks directly to any Anthropic- or
6
+ OpenAI-compatible provider.
7
+
8
+ `lwyrm` is the name of the command, so this package exists for people who
9
+ reach for `pip install lwyrm` first. It has no code of its own; it simply
10
+ depends on `lindwyrm`, which ships the `lwyrm` command.
11
+
12
+ ```bash
13
+ pip install lwyrm # equivalent to: pip install lindwyrm
14
+ lwyrm --help
15
+ ```
16
+
17
+ Source and documentation: <https://github.com/miron404/lindwyrm>
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: lwyrm
3
+ Version: 0.1.0
4
+ Summary: Alias for lindwyrm -- installs the agent whose CLI command is `lwyrm`
5
+ Project-URL: Homepage, https://github.com/miron404/lindwyrm
6
+ Project-URL: Source, https://github.com/miron404/lindwyrm
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: lindwyrm>=0.1.0
14
+
15
+ # lwyrm
16
+
17
+ This is an alias package. The actual project is
18
+ **[lindwyrm](https://pypi.org/project/lindwyrm/)** — a minimal,
19
+ dependency-light CLI coding agent that talks directly to any Anthropic- or
20
+ OpenAI-compatible provider.
21
+
22
+ `lwyrm` is the name of the command, so this package exists for people who
23
+ reach for `pip install lwyrm` first. It has no code of its own; it simply
24
+ depends on `lindwyrm`, which ships the `lwyrm` command.
25
+
26
+ ```bash
27
+ pip install lwyrm # equivalent to: pip install lindwyrm
28
+ lwyrm --help
29
+ ```
30
+
31
+ Source and documentation: <https://github.com/miron404/lindwyrm>
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ lwyrm.egg-info/PKG-INFO
4
+ lwyrm.egg-info/SOURCES.txt
5
+ lwyrm.egg-info/dependency_links.txt
6
+ lwyrm.egg-info/requires.txt
7
+ lwyrm.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ lindwyrm>=0.1.0
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "lwyrm"
3
+ version = "0.1.0"
4
+ description = "Alias for lindwyrm -- installs the agent whose CLI command is `lwyrm`"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ classifiers = [
8
+ "Development Status :: 3 - Alpha",
9
+ "Environment :: Console",
10
+ "Intended Audience :: Developers",
11
+ "Programming Language :: Python :: 3",
12
+ ]
13
+ # The whole point of this distribution: `pip install lwyrm` pulls in the real
14
+ # package. The `lwyrm` command itself comes from lindwyrm's [project.scripts],
15
+ # so this package deliberately declares no entry points of its own -- two
16
+ # distributions installing the same console script would collide in PATH.
17
+ dependencies = ["lindwyrm>=0.1.0"]
18
+
19
+ [project.urls]
20
+ Homepage = "https://github.com/miron404/lindwyrm"
21
+ Source = "https://github.com/miron404/lindwyrm"
22
+
23
+ [build-system]
24
+ requires = ["setuptools>=61"]
25
+ build-backend = "setuptools.build_meta"
26
+
27
+ [tool.setuptools]
28
+ # No modules of its own -- this is a metapackage.
29
+ packages = []
lwyrm-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+