pairwit 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.
- pairwit-0.0.1/.gitignore +44 -0
- pairwit-0.0.1/PKG-INFO +27 -0
- pairwit-0.0.1/README.md +10 -0
- pairwit-0.0.1/pyproject.toml +34 -0
- pairwit-0.0.1/src/pairwit/__init__.py +17 -0
pairwit-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Secrets / local config
|
|
2
|
+
.env
|
|
3
|
+
.env.*
|
|
4
|
+
!.env.example
|
|
5
|
+
|
|
6
|
+
# Python
|
|
7
|
+
.venv/
|
|
8
|
+
venv/
|
|
9
|
+
__pycache__/
|
|
10
|
+
*.py[cod]
|
|
11
|
+
*$py.class
|
|
12
|
+
*.so
|
|
13
|
+
.Python
|
|
14
|
+
build/
|
|
15
|
+
dist/
|
|
16
|
+
*.egg-info/
|
|
17
|
+
.eggs/
|
|
18
|
+
pip-wheel-metadata/
|
|
19
|
+
|
|
20
|
+
# Type checkers / linters / tests
|
|
21
|
+
.mypy_cache/
|
|
22
|
+
.pyright/
|
|
23
|
+
.ruff_cache/
|
|
24
|
+
.pytest_cache/
|
|
25
|
+
.coverage
|
|
26
|
+
htmlcov/
|
|
27
|
+
.tox/
|
|
28
|
+
.nox/
|
|
29
|
+
|
|
30
|
+
# Torso project-local (optional personal overrides)
|
|
31
|
+
.torso.permissions
|
|
32
|
+
|
|
33
|
+
# OS
|
|
34
|
+
.DS_Store
|
|
35
|
+
Thumbs.db
|
|
36
|
+
|
|
37
|
+
# Editors / IDEs
|
|
38
|
+
.idea/
|
|
39
|
+
*.swp
|
|
40
|
+
*.swo
|
|
41
|
+
*~
|
|
42
|
+
.vscode/*
|
|
43
|
+
!.vscode/settings.json
|
|
44
|
+
!.vscode/extensions.json
|
pairwit-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
+
```
|
pairwit-0.0.1/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "pairwit"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Pairwit — consent-first coding agent (placeholder)"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
authors = [{ name = "Pairwit", email = "hello@pairwit.dev" }]
|
|
9
|
+
keywords = ["pairwit", "coding-agent", "llm", "tui"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"Topic :: Software Development",
|
|
16
|
+
]
|
|
17
|
+
urls = { Homepage = "https://pairwit.dev", Repository = "https://github.com/pairwit/pairwit" }
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
pairwit = "pairwit:main"
|
|
21
|
+
|
|
22
|
+
[build-system]
|
|
23
|
+
requires = ["hatchling"]
|
|
24
|
+
build-backend = "hatchling.build"
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["src/pairwit"]
|
|
28
|
+
|
|
29
|
+
[tool.hatch.build.targets.sdist]
|
|
30
|
+
include = [
|
|
31
|
+
"src/pairwit",
|
|
32
|
+
"README.md",
|
|
33
|
+
"pyproject.toml",
|
|
34
|
+
]
|
|
@@ -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"]
|