Contributing¶
Repo layout¶
This repository is a uv workspace with three main members:
pypi_profile/- the main CLI and renderermatthewdeanmartin/- a real profile/plugin packagejohn_doe/- an example profile/plugin package used for tests and demos
Local setup¶
For work on pypi-profile, use the package directory:
cd pypi_profile
uv sync
Run the CLI through uv run:
uv run pypi-profile --help
Common commands¶
uv run make check
uv run pytest tests -v
uv run mkdocs build
Working conventions¶
- use type annotations on new Python code
- keep docstrings in Google style
- prefer
uv runover barepython - keep docs aligned with the shipped behavior, and call out roadmap items explicitly when they come from
spec/
CI and publishing¶
The root repository now has separate GitHub Actions workflows for:
- building
pypi_profile - building
matthewdeanmartin - publishing
pypi_profile - publishing
matthewdeanmartin
That separation keeps package feedback clearer in this workspace monorepo.