Vendor git source directories into your project tree
Project description
ventwig
Vendors source directories from a git repository into your project — as plain files, not as a submodule or package dependency.
Problem
If you maintain several small CLI tools that share configuration and logging boilerplate, the options are:
- Add a runtime PyPI dependency on that boilerplate — which anyone forking the tool has to explain
- Copy the files by hand — which drifts
ventwig is a third option: a dev-time tool that clones a canonical upstream repo, copies a designated subdirectory into your project tree, and tracks a content hash so it can detect if the local copy has been hand-edited since the last sync.
Install
pip install ventwig
ventwig is a dev-time tool. Do not list it in [project.dependencies].
Configure
In your project's pyproject.toml:
[[tool.ventwig.sources]]
name = "appkit"
local_path = "src/mypackage/_vendor/appkit"
upstream = "https://github.com/you/appkit.git"
upstream_path = "src/appkit" # optional — defaults to repo root
ref = "main" # branch name or tag
Multiple [[tool.ventwig.sources]] entries are allowed. ventwig requires the consuming project to be inside a git working tree.
Global options
These keys live in [tool.ventwig] (not inside a source block):
[tool.ventwig]
create_parent_package_markers = true # default; see below
Use
ventwig sync # sync all configured sources
ventwig sync appkit # sync one source by name
ventwig sync --dry-run # preview changes without writing anything
ventwig sync --force # overwrite even if local content has drifted
ventwig sync --add-runtime-dependencies # also add missing upstream deps (see below)
ventwig status # show sync state for all sources
ventwig status appkit # show sync state for one source
After a successful sync, ventwig writes .ventwig.lock alongside your pyproject.toml. Commit it — it records the synced commit hash and a content tree hash used for drift detection on the next sync.
Package discovery and __init__.py markers
When vendoring into a src/ layout project that uses setuptools' normal package discovery, every intermediate directory in the vendored path must be a Python package (i.e., contain __init__.py). For example, given:
local_path = "src/mypackage/_vendor/appkit"
After sync, src/mypackage/_vendor/appkit/__init__.py exists (it came from upstream), but src/mypackage/_vendor/__init__.py does not — which causes setuptools to silently skip the vendored code during pip install.
By default, ventwig creates any missing __init__.py files in parent directories, walking up from local_path until it reaches a directory that already has one. To disable this behavior:
[tool.ventwig]
create_parent_package_markers = false
Runtime dependency checking
When syncing, ventwig reads the upstream package's [project.dependencies] and compares them against the downstream project's declared dependencies. Any upstream runtime dependency that is absent downstream is reported as a warning:
Warning: upstream runtime deps missing from downstream project:
- structlog>=21.0
Tip: re-run with --add-runtime-dependencies to add them automatically.
To have ventwig add the missing dependencies directly to your pyproject.toml:
ventwig sync --add-runtime-dependencies
This uses tomlkit to edit the file in place, so comments and formatting are preserved. Dependency version specifiers are copied verbatim from upstream; review them before committing. If the upstream has no pyproject.toml or declares no runtime dependencies, this step is silently skipped.
What it is not
- Not a package manager. It vendors files, not installed packages.
- Not bidirectional. Edits always happen upstream; ventwig only pulls.
- Not
git subtreeorgit submodule. The vendored directory is plain tracked content with no git history coupling.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ventwig-0.2.0.tar.gz.
File metadata
- Download URL: ventwig-0.2.0.tar.gz
- Upload date:
- Size: 52.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b04914cc960746497497e9072c7e9e876be4b8bc7290783b1c7de5b428393d6
|
|
| MD5 |
9cc148c258738bfc11bb198a72e12167
|
|
| BLAKE2b-256 |
60c2a29037ff76ba6d8e4379b59651b849a69b21062f7f09a247cb104f4bcc7b
|
File details
Details for the file ventwig-0.2.0-py3-none-any.whl.
File metadata
- Download URL: ventwig-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc2aaa53b8b143ee878be37546a61deb417e738be6d269b3950b661821fff102
|
|
| MD5 |
fff442605d3174337b3481c60320b319
|
|
| BLAKE2b-256 |
8a3a6f99122e27fe7919c011c4804ba35074f0d4b8e20b6a7834e04a6759bb4d
|