pairwit 0.0.1__py3-none-any.whl

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.
pairwit/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """Pairwit — consent-first coding agent.
2
+
3
+ This is a name-reservation placeholder. The full agent ships in a later release.
4
+ """
5
+
6
+ __version__ = "0.0.1"
7
+
8
+
9
+ def main() -> None:
10
+ print(
11
+ f"pairwit {__version__}\n"
12
+ "Placeholder package — see https://pairwit.dev\n"
13
+ "The coding agent is not included in 0.0.1."
14
+ )
15
+
16
+
17
+ __all__ = ["__version__", "main"]
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.5
2
+ Name: pairwit
3
+ Version: 0.0.1
4
+ Summary: Pairwit — consent-first coding agent (placeholder)
5
+ Project-URL: Homepage, https://pairwit.dev
6
+ Project-URL: Repository, https://github.com/pairwit/pairwit
7
+ Author-email: Pairwit <hello@pairwit.dev>
8
+ License: MIT
9
+ Keywords: coding-agent,llm,pairwit,tui
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # pairwit
19
+
20
+ Consent-first coding agent. Site: [pairwit.dev](https://pairwit.dev)
21
+
22
+ > **0.0.1** is a PyPI name placeholder. The agent is not shipped yet.
23
+
24
+ ```bash
25
+ pip install pairwit
26
+ pairwit
27
+ ```
@@ -0,0 +1,5 @@
1
+ pairwit/__init__.py,sha256=pTNVBDvBl0RIBIMYzCTp3qpH2_FcFaV9bouepKnxaq0,375
2
+ pairwit-0.0.1.dist-info/METADATA,sha256=VoYquzmEDjrLWoYZ_cDT4eyth897GUzyjRUvEGcG91E,799
3
+ pairwit-0.0.1.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
4
+ pairwit-0.0.1.dist-info/entry_points.txt,sha256=NlNI-Ej--L-5CGSvQONkFEjIV02rq9amMAFYoJEnWuY,41
5
+ pairwit-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pairwit = pairwit:main