Metadata-Version: 2.4
Name: gwc-pybundle
Version: 2.2.1
Summary: Deterministic Python project context bundling for humans, automation, and AI
Author-email: Jessica Brown <jessica@codenamejessica.com>
License: The MIT License (MIT)
        =====================
        
        Copyright © 2025 Jessica Brown
        
        Permission is hereby granted, free of charge, to any person
        obtaining a copy of this software and associated documentation
        files (the “Software”), to deal in the Software without
        restriction, including without limitation the rights to use,
        copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the
        Software is furnished to do so, subject to the following
        conditions:
        
        The above copyright notice and this permission notice shall be
        included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        OTHER DEALINGS IN THE SOFTWARE.
Project-URL: Homepage, https://github.com/girls-whocode/pybundle
Project-URL: Repository, https://github.com/girls-whocode/pybundle
Project-URL: Issues, https://github.com/girls-whocode/pybundle/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: colorama>=0.4.6
Requires-Dist: iniconfig>=2.3.0
Requires-Dist: librt>=0.7.5
Requires-Dist: packaging>=25.0
Requires-Dist: pathspec>=0.12.1
Requires-Dist: pluggy>=1.6.0
Requires-Dist: Pygments>=2.19.2
Requires-Dist: typing_extensions>=4.15.0
Requires-Dist: pdoc>=16.0.0
Provides-Extra: tools
Requires-Dist: pytest>=9.0.2; extra == "tools"
Requires-Dist: mypy>=1.19.1; extra == "tools"
Requires-Dist: mypy_extensions>=1.2.1; extra == "tools"
Requires-Dist: ruff>=0.14.10; extra == "tools"
Requires-Dist: pylint; extra == "tools"
Requires-Dist: pip-licenses; extra == "tools"
Requires-Dist: line_profiler; extra == "tools"
Requires-Dist: pipdeptree; extra == "tools"
Requires-Dist: vulture; extra == "tools"
Requires-Dist: radon; extra == "tools"
Requires-Dist: interrogate; extra == "tools"
Requires-Dist: bandit; extra == "tools"
Requires-Dist: pip-audit; extra == "tools"
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Provides-Extra: all
Requires-Dist: pytest>=9.0.2; extra == "all"
Requires-Dist: mypy>=1.19.1; extra == "all"
Requires-Dist: mypy_extensions>=1.2.1; extra == "all"
Requires-Dist: ruff>=0.14.10; extra == "all"
Requires-Dist: pylint; extra == "all"
Requires-Dist: pip-licenses; extra == "all"
Requires-Dist: line_profiler; extra == "all"
Requires-Dist: pipdeptree; extra == "all"
Requires-Dist: vulture; extra == "all"
Requires-Dist: radon; extra == "all"
Requires-Dist: interrogate; extra == "all"
Requires-Dist: bandit; extra == "all"
Requires-Dist: pip-audit; extra == "all"
Requires-Dist: build; extra == "all"
Requires-Dist: twine; extra == "all"
Dynamic: license-file

# 🧳 pybundle ![PyPI - Version](https://img.shields.io/pypi/v/gwc-pybundle)

![GitHub Release Date](https://img.shields.io/github/release-date/girls-whocode/pybundle?color=orange)

[![Python versions](https://img.shields.io/pypi/pyversions/gwc-pybundle.svg?color=3776AB)](https://pypi.org/project/gwc-pybundle/)
[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](LICENSE.md)
[![PyPI Downloads](https://static.pepy.tech/personalized-badge/gwc-pybundle?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLUE&right_color=GREY&left_text=downloads)](https://pepy.tech/projects/gwc-pybundle)
![GitHub Sponsors](https://img.shields.io/github/sponsors/girls-whocode?color=ec4899)

[![CI](https://github.com/girls-whocode/pybundle/actions/workflows/publish.yml/badge.svg?color=fb923c)](https://github.com/girls-whocode/pybundle/actions)
[![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-14b8a6.svg)](https://github.com/astral-sh/ruff)
[![Type checked](https://img.shields.io/badge/type%20checked-mypy-0ea5e9.svg)](https://mypy-lang.org/)
![Commit Activity](https://img.shields.io/github/commit-activity/t/girls-whocode/pybundle?color=f59e0b)

---

## Why pybundle?

**pybundle** exists to solve a boring but expensive problem:

> **Context loss.**

Modern debugging, CI, audits, and AI-assisted workflows fail not because tools are weak —
but because **context is fragmented, ephemeral, or missing entirely**.

pybundle creates a **single, deterministic artifact** that captures:

* the exact source code that mattered
* the tools that ran (and their versions)
* the environment they ran in
* the outputs they produced
* and the metadata required to reproduce or reason about it later

For humans, automation, and AI.

Think:

> **`git archive` + diagnostics + metadata**
> without heuristics, guesswork, or “works on my machine.”

---

## What pybundle is good at

pybundle is designed for:

* handing a project to another engineer
* attaching full context to a bug report
* generating CI artifacts that actually explain failures
* feeding codebases to AI tools without noise
* audits, reviews, and reproducibility
* answering *“what exactly did we run?”* weeks later

It prioritizes **determinism, traceability, and automation** over cleverness.

---

## Installation

```bash
pip install gwc-pybundle
```

> **Note:**
> The PyPI package name is `gwc-pybundle`, but the CLI command is `pybundle`.

Quick sanity check:

```bash
pybundle version
```

---

## Where to go next

📚 **Documentation (Wiki)**
➡ [https://github.com/girls-whocode/pybundle/wiki](https://github.com/girls-whocode/pybundle/wiki)

The Wiki contains:

* Usage and profiles
* Security & redaction
* JSON output contracts
* CI integration
* AI handoff workflows
* FAQs and design rationale

💬 **Questions & Discussion**
➡ [https://github.com/girls-whocode/pybundle/discussions](https://github.com/girls-whocode/pybundle/discussions)

Use Discussions for:

* “Is pybundle right for this?”
* Workflow questions
* Design feedback
* Feature ideas
* Real-world use cases

---

## Philosophy

> If a tool produces output, it should also produce metadata explaining
> **how** and **why** that output exists.

pybundle treats **context as a first-class artifact**.

---

## License

MIT License

