Template Dependency Parity Brief¶
Project Context¶
UVI is a Python project generator that creates Python projects using UV for dependency management. The template should maintain functional parity with the main project to ensure a consistent "dogfooding" experience.
Current Status and Issues¶
- The main UVI project includes dependencies and configurations that are not currently reflected in the template
- Missing configurations can lead to inconsistent behavior between the main project and generated projects
- Users of generated projects may miss out on best practices established in the main project
Proposed Changes¶
Phase 1: MkDocs Github Admonitions Plugin (Complete)¶
- Add
mkdocs-github-admonitions-plugin>=0.0.3
to the template's dev dependencies - This enables consistent documentation features between the main project and generated projects
Phase 2: Ruff Import Configuration (Needed)¶
- Add the following configuration to template pyproject.toml:
- This ensures all files include future annotations, maintaining consistent import styling
Phase 3: Build & Publish Strategy (Analysis)¶
- Current main project includes
build>=1.2.2.post1
andtwine>=6.1.0
for package building/publishing - Analysis reveals UV natively supports these operations via:
uv build
- Replaces the build package functionalityuv publish
- Replaces the twine package functionality- Recommendation: Rather than adding these as dependencies, document the use of UV's native capabilities in generated projects
Implementation Plan¶
- Add the ruff isort configuration to the template
- Update project documentation to highlight UV's native build/publish capabilities
- Consider adding a new cookiecutter variable to include publishing documentation in README.md
- Verify the changes with a test project generation
Benefits¶
- Improved Consistency: Generated projects will follow the same best practices as the main project
- Better Code Quality: Enforced import style results in more maintainable code
- UV-First Approach: Promoting UV's native capabilities over additional dependencies aligns with the project's philosophy
- Reduced Dependency Overhead: Using built-in UV features instead of adding dependencies simplifies project maintenance
Summary¶
This brief proposes maintaining a closer alignment between the UVI main project and its template by:
- Adding the missing GitHub admonitions plugin dependency (completed)
- Adding missing ruff import configuration (pending)
- Leveraging UV's native build/publish capabilities instead of adding dependencies (strategic decision)
These changes support the project's mission of providing a modern, UV-based Python project template with a consistent developer experience.