Skip to content

Add pip installation support via pyproject.toml#3

Draft
Copilot wants to merge 1 commit into
masterfrom
copilot/propose-improvements-installation-via-pip
Draft

Add pip installation support via pyproject.toml#3
Copilot wants to merge 1 commit into
masterfrom
copilot/propose-improvements-installation-via-pip

Conversation

Copy link
Copy Markdown

Copilot AI commented Mar 27, 2026

Buzzard had no packaging metadata, making it impossible to install via pip — users had to run python buzzard.py directly from the repo root.

Changes

  • pyproject.toml — standard PEP 517/518 packaging config with project metadata, minimum-version-pinned runtime dependencies, an edelweiss optional extra for the EdelweissFE interface, and a buzzard console script entry point
  • buzzard/__main__.py — extracts CLI logic from buzzard.py into a proper main() function; enables both buzzard (console script) and python -m buzzard
  • buzzard.py — reduced to a thin shim that delegates to buzzard.__main__:main for backward compatibility
  • .gitignore — adds *.egg-info

Usage after install

pip install .          # or: pip install -e .
buzzard config.py      # console script on PATH
python -m buzzard config.py  # also works

The EdelweissFE interface dependency is opt-in:

pip install ".[edelweiss]"

Agent-Logs-Url: https://github.com/EdelweissFE/Buzzard/sessions/e9694261-1e0d-49d4-aac0-9fd874e99cbc

Co-authored-by: alexdummer <62308023+alexdummer@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants