-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMANIFEST.in
More file actions
39 lines (34 loc) · 1.32 KB
/
Copy pathMANIFEST.in
File metadata and controls
39 lines (34 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# MANIFEST.in -- ship the Markdown agentic kit in the **sdist** so source /
# pipx / uvx / `--no-binary` installs (and the GitHub release tarball) get the
# full kit, not just the importable `gabbe` package.
#
# IMPORTANT: the kit (agents/, docs/) lives OUTSIDE the `gabbe*` package, so it
# is bundled into the sdist ONLY — a plain *wheel* install does NOT carry it
# (include-package-data can only place files that live inside a package). For a
# Python-independent kit install use `npx gabbe-kit init` or the install scripts.
# This matches the packaging note in pyproject.toml and additively bundles the
# kit alongside the wheel's [tool.setuptools.packages.find] = `gabbe*` selection.
# The Markdown kit (skills, guides, templates, personas, memory, scripts).
recursive-include agents *
# Documentation tree shipped with the kit.
recursive-include docs *
# The Python-independent installers and the wizard.
include scripts/init.py
include install.sh
include install.ps1
include bin/install.js
include package.json
# Licensing and top-level docs.
include LICENSE
include LICENSE-CODE
include README.md
include CHANGELOG.md
# Prune caches / build artifacts that should never reach the sdist.
global-exclude __pycache__
global-exclude *.py[cod]
prune .venv
prune build
prune dist
prune **/.mypy_cache
prune **/.pytest_cache
prune **/.ruff_cache