Skip to main content

CLI tool to scaffold Python projects with uv, pre-configured dev tools, and optional GitHub integration

Project description

uv-start

A command-line tool for initializing Python projects using the new uv project management tool: https://docs.astral.sh/uv/ This package integrates uv commands with a template for development configs, commitizen versioning, precommit hooks and CI


Status

Version: version Python License


Development state of the program

This project is in active development. Features and APIs may change. Please report issues on GitHub. Tests currently run only on Mac and Linux with Python 3.13.


Versioning

This project uses Semantic Versioning and Conventional Commits.


Authors

Helfrid Hochegger


Dependencies

  • Requires Python 3.13 (not tested on other versions)
  • UV package manager installed (https://github.com/astral-sh/uv)
  • GitHub CLI (gh) authenticated via gh auth login, if using GitHub features

Contact

Created by Helfrid Hochegger Email: hh65@sussex.ac.uk GitHub Issues: https://github.com/hocheggerlab/uv-start/issues

License

This project is licensed under the MIT License


Features

  • Create Python libraries, packages, or applications
  • Workspace support for monorepo setups
  • Automatic setup of development tools:
    • Ruff for linting and formatting
    • Ty for type checking
    • Pytest for testing
    • Commitizen for conventional commits
    • Pre-commit hooks
    • loguru logging (opt-in .env configuration via --dotenv)
  • GitHub repository initialization with CI/CD workflows
  • Semantic versioning support
  • Python 3.10–3.14 support for project initialisation

Installation

Install as a global tool with uv (recommended):

uv tool install uv-start

Or with pip:

pip install uv-start

Configure your author details (run once):

uv-start --config "Jane Doe" "jane@example.com"

If you skip this step, uv-start falls back to your git config (user.name / user.email).

GitHub authentication

If you plan to use the --github flag, authenticate the gh CLI first:

gh auth login

Follow the interactive prompts to authenticate via OAuth (browser). This stores credentials securely via the gh keychain — no tokens need to be stored in any file.

Environment configuration

By default, generated projects log to the console via loguru with no .env file required. Scaffold with --dotenv to opt into environment-driven logging — this adds python-dotenv and a .env.example you can copy to activate:

uv-start my-project --dotenv
cp .env.example .env

The .env file is gitignored by default — never commit it. Keep real credentials and environment-specific settings in .env only.

Usage

Basic usage to install a repo with pre-configured Ruff, Ty, Commitizen and Pre-Commit Hooks settings, optional setup of github repo and basic CI pipeline including version bumps on conventional commit messages.

To run the program cd to desired parent directory (this should not be a git repo!) The set the UV_ORIGINAL_CWD to $PWD and then execute uv run.

bash

cd "parent-directory"
UV_ORIGINAL_CWD="$PWD"
uv run --directory path_to/uv-start uv-start project-name [options]

Alternatively, add this function to your .zshrc or .bashrc config file

bash

uv_start() {
  UV_ORIGINAL_CWD="$PWD" uv run --directory path_to/uv-start uv-start "$@"
}
alias uv-start='uv_start'

The restart your shell cd to the desried parent directory and type bash

uv-start project-name [options]

Options:

  • -t, --type [lib|package]: The type of project to create (default: lib, alternative: package)
  • -p, --python [3.14|3.13|3.12|3.11|3.10]: Python version to use (default: 3.13)
  • -w, --workspace: Create a workspace (monorepo setup)
  • -g, --github: Create and initialize a GitHub repository
  • --private: Create a private GitHub repository (requires --github)
  • --data: Create a data analysis project (jupyter, pandas, matplotlib, seaborn)
  • --napari: Create a napari plugin project (hello-world widget scaffold)
  • --dotenv: Add .env handling (python-dotenv) for env-driven log configuration
  • --config NAME EMAIL: Save author name and email for project templates

Examples

Create a basic library: bash

uv-start my-package -t package -p 3.13

Create a workspace with GitHub repository:

bash

uv-start my-workspace -w -g

creates an upstream main branch on github (default public, use --private for private repos)

bash

uv-start my-workspace -w -g

This will generate a uv workspace (see: https://docs.astral.sh/uv/concepts/projects/workspaces/) The user will be prompted to add a common-utils library and an additional project.


Project Structure

The generated project follows this structure:

project_name/
├── src/
│   └── project_name/
│       └── __init__.py
├── tests/
├── pyproject.toml
├── README.md
├── LICENSE
├── .env.example
└── .pre-commit-config.yaml

For workspaces:

workspace_name/
├── packages/
│ ├── package1/
│ └── package2/
├── pyproject.toml
├── README.md
└── .pre-commit-config.yaml

Development Tools

UV Init sets up the following development tools:

  • Ruff: Modern Python linter and formatter
  • Ty: Static type checker
  • Pytest: Testing framework
  • Commitizen: Conventional commit tooling
  • Pre-commit: Git hooks manager
  • loguru: Logging with a colourised console sink by default and an opt-in rotating file sink; env-driven configuration available via --dotenv

Development Tools Configuration

Ruff

  • Line length: 79 characters
  • Selected rules: flake8, pyupgrade, isort, and more
  • Automatic fixes enabled

Ty

  • Checks src and tests
  • Sets rule severity to errors for strict enforcement
  • Excludes virtualenv/build/dist/migrations paths

Commitizen

  • Uses conventional commits
  • Automatic version bumping
  • Changelog generation
  • Synchronized version tracking across all workspace packages

Logging (loguru)

  • Colourised console sink at INFO by default — no configuration required
  • Rotating file sink included (commented out) with rotation, retention and compression
  • Global logger (from loguru import logger); module/function/line captured automatically
  • --dotenv adds env-driven config (LOG_LEVEL, LOG_FILE, ENV) with .env/.env.<ENV> support

Workspace Features

When creating a workspace (-w flag), UV Init:

  • Sets up a monorepo structure
  • Offers to create a common utilities package
  • Supports adding multiple projects
  • Configures dependencies between workspace packages
  • Synchronized versioning: All packages in the workspace share a single version number. Running cz bump at the root updates pyproject.toml, __init__.py, and README.md across all sub-packages simultaneously.

GitHub Integration

When using the -g flag, UV Init:

  1. Initializes a Git repository
  2. Creates a GitHub repository
  3. Sets up GitHub Actions workflows for:
    • CI (linting, type checking, testing)
    • Automated releases using conventional commits

additional --private flag for optional private repos

GitHub Workflows

CI Pipeline

  • Runs on Python 3.13
  • Performs:
    • Code linting with Ruff
    • Type checking with Ty
    • Unit tests with Pytest
    • Format checking

Release Pipeline

  • Automatic version bumping on main branch
  • Creates releases based on conventional commits
  • Generates changelogs
  • For workspaces, a single cz bump at the root keeps all packages in sync

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes using conventional commits (cz commit)
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development

Local environment

uv sync

Tests

uv run pytest

Type checking (Ty)

uv run ty check .

Building the documentation (Sphinx)

uv run sphinx-build -b html docs docs/_build/html

Then open docs/_build/html/index.html in your browser.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uv_start-0.7.1.tar.gz (144.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uv_start-0.7.1-py3-none-any.whl (39.6 kB view details)

Uploaded Python 3

File details

Details for the file uv_start-0.7.1.tar.gz.

File metadata

  • Download URL: uv_start-0.7.1.tar.gz
  • Upload date:
  • Size: 144.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for uv_start-0.7.1.tar.gz
Algorithm Hash digest
SHA256 11400ffbeb6d4a499ae29b7477adbd9e60ebcda25c97b3f6a77be8fda8ad8d55
MD5 f4ae5e95706ef6314b935273f8953eff
BLAKE2b-256 1675687858ddfca75ad9b866ce462061c6e5123f5d2ee29a78bcafbbfdd89fce

See more details on using hashes here.

File details

Details for the file uv_start-0.7.1-py3-none-any.whl.

File metadata

  • Download URL: uv_start-0.7.1-py3-none-any.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for uv_start-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 39fa2a4f36eacd03f5f142c34ba4a7da0c6863491f09ce16d822e21f8832b7f3
MD5 768c8fd5c89459f0919eb939cdfe49c3
BLAKE2b-256 d90ec6a14eac775ee3e1dbbb9c23c18ba6d32ad50cb1aaa6ec5d8c803adc6d38

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page