Skip to main content

A template library for Python library projects using Poetry and Semantic Release.

Project description

Python Library Template ๐Ÿš€

Enterprise-ready Python library template with security scanning, automated publishing, and comprehensive tooling.

Create production-quality Python libraries with confidence. This template provides everything you need to build, test, and publish professional Python packages.

CI Pipeline PyPI Python

Poetry Code style: black Linting: Ruff pre-commit Renovate

pytest GitHub Actions Semantic Release AWS SAM License: AGPL v3

๐Ÿ“Š Live Dashboards

๐Ÿ“– Documentation ๐Ÿงช Unit Tests ๐Ÿ”ฌ Integration Tests ๐Ÿ“Š Coverage โšก Benchmarks ๐Ÿ”’ Security โš–๏ธ Compliance

๐ŸŽฏ Perfect For

  • Open Source Libraries - Share your code with the world
  • Internal Company Packages - Professional standards for private code
  • Research Code - Reproducible, well-tested scientific computing
  • CLI Tools - Build robust command-line interfaces
  • Microservice Libraries - Shared code between services

๐Ÿ”„ Development Workflow

graph LR
    A[Create Issue] --> B[Create Branch]
    B --> C[Write Tests]
    C --> D[Write Code]
    D --> E[Run Checks]
    E --> F[Create PR]
    F --> G[Auto Merge]
    G --> H[Auto Release]

    E -.->|Failed| C
    F -.->|Review| D

    style A fill:#e1f5fe
    style C fill:#fff3e0
    style E fill:#f3e5f5
    style H fill:#e8f5e9

โšก What You Get

Zero-Config CI/CD Pipeline

  • Matrix testing with HTML reports
  • Automated security scanning (Bandit, Safety, pip-audit, Semgrep)
  • License compatibility checking and compliance reports
  • Semantic versioning with automated changelog generation

Enterprise-Grade Quality

  • Pre-commit hooks (Ruff, Black, conventional commits)
  • Test-driven development setup with Click CLI testing
  • Code coverage reporting with beautiful HTML dashboards
  • API documentation auto-generated and deployed to GitHub Pages

Modern Python Stack

  • Poetry dependency management with security/compliance groups
  • Trusted publishing to PyPI/TestPyPI (no API keys needed)
  • Optional AWS SAM integration with ephemeral test environments
  • Windows/Git Bash compatibility with comprehensive guidance

Privacy-Conscious Telemetry

  • Opt-in anonymous usage tracking to improve your library

๐Ÿ“š Documentation

For AI-optimized documentation navigation, see LINKS.md

  • Community insights via Sentry integration
  • Full transparency on collected data
  • Easy enable/disable controls

๐Ÿš€ Quick Start

Get your library up and running in minutes:

graph TD
    A[1. Create Repository] --> B[2. Bootstrap Project]
    B --> C[3. Configure Settings]
    C --> D[4. Start Developing]

    style A fill:#e3f2fd
    style B fill:#f3e5f5
    style C fill:#fff3e0
    style D fill:#e8f5e9

1๏ธโƒฃ Create Your Repository

# Option A: Use GitHub template (recommended)
gh repo create my-awesome-lib --template svange/augint-library --public
cd my-awesome-lib

# Option B: Clone directly
git clone https://github.com/svange/augint-library.git my-awesome-lib
cd my-awesome-lib
rm -rf .git && git init

2๏ธโƒฃ Bootstrap Your Project

# Stage 1: Customize template
python scripts/bootstrap-stage1.py
# - Enter your project name
# - Configure basic settings
# - Updates all references automatically

# Stage 2: AWS integration (optional)
python scripts/bootstrap-stage2.py
# - Sets up SAM pipeline
# - Configures OIDC authentication
# - Creates test environments

3๏ธโƒฃ Configure Repository Settings

  1. Enable GitHub Pages (Settings โ†’ Pages โ†’ Source: GitHub Actions)
  2. Set up branch protection for main:
    • Require PR reviews
    • Require status checks
    • Include administrators
  3. Add repository secrets (if needed):
    • PYPI_API_TOKEN (for manual publishing)
    • Custom secrets for your project

4๏ธโƒฃ Start Developing!

# Install dependencies
poetry install
pre-commit install

# Create your first feature
git checkout -b feat/amazing-feature
# ... write code ...
pytest  # All tests pass!
git add . && git commit -m "feat: add amazing feature"
git push -u origin feat/amazing-feature

๐Ÿ“‹ Detailed setup guide: Bootstrap Documentation

That's it! Your CI/CD pipeline is now running with full security scanning and automated publishing.

๐Ÿ—๏ธ Architecture Overview

graph TB
    subgraph "Development Environment"
        A[Developer] --> B[Pre-commit Hooks]
        B --> C[Local Tests]
    end

    subgraph "CI/CD Pipeline"
        C --> D[GitHub Actions]
        D --> E[Matrix Testing]
        D --> F[Security Scans]
        D --> G[License Check]
        E & F & G --> H{All Pass?}
    end

    subgraph "Deployment"
        H -->|Yes| I[Build Package]
        I --> J[Publish to PyPI]
        I --> K[Deploy Docs]
        K --> L[GitHub Pages]
    end

    subgraph "Optional AWS"
        H -->|Yes| M[SAM Deploy]
        M --> N[Lambda Functions]
        M --> O[API Gateway]
    end

    style A fill:#e3f2fd
    style H fill:#fff3e0
    style J fill:#e8f5e9
    style L fill:#e8f5e9

๐Ÿ“ฆ What's Included

๐Ÿ”ง Development Tools

  • Poetry - Modern dependency management
  • Pre-commit - Automated code quality checks
  • Ruff - Fast Python linter and formatter
  • Mypy - Static type checking
  • Pytest - Testing with fixtures and coverage

๐Ÿ›ก๏ธ Security & Compliance

  • Bandit - Security vulnerability scanning
  • Safety - Dependency vulnerability checks
  • pip-audit - Supply chain security
  • Semgrep - Custom security rules
  • License checking - Automated compliance reports

๐Ÿ“Š Quality Assurance

  • 90%+ test coverage requirement
  • Mutation testing - Test quality validation
  • Benchmarking - Performance tracking
  • HTML test reports - Beautiful test dashboards
  • Renovate - Automated dependency updates

๐Ÿš€ CI/CD Features

  • Matrix testing - Python 3.9, 3.10, 3.11, 3.12
  • Semantic versioning - Automated releases
  • Trusted publishing - Secure PyPI uploads
  • GitHub Pages - Documentation hosting
  • PR auto-merge - For passing builds

๐ŸŽฏ Optional Features

  • AWS SAM - Serverless deployment
  • Feature flags - Gradual rollouts
  • Telemetry - Anonymous usage tracking
  • Docker support - Containerized development

๐ŸŽฏ Common Use Cases

๐Ÿ“š Creating a Python Library
# src/mylib/core.py
"""Core functionality for mylib."""

def process_data(data: list[dict]) -> list[dict]:
    """Process data with validation.

    Args:
        data: List of dictionaries to process

    Returns:
        Processed data

    Example:
        >>> process_data([{"value": 1}])
        [{"value": 1, "processed": True}]
    """
    return [{"processed": True, **item} for item in data]
# tests/test_core.py
import pytest
from mylib.core import process_data

def test_process_data():
    result = process_data([{"value": 1}])
    assert result[0]["processed"] is True
    assert result[0]["value"] == 1
๐Ÿ–ฅ๏ธ Building a CLI Tool
# src/mylib/cli.py
import click
from .core import process_data

@click.command()
@click.argument('input_file', type=click.Path(exists=True))
@click.option('--output', '-o', help='Output file')
def cli(input_file, output):
    """Process INPUT_FILE and save results."""
    # Load data
    with open(input_file) as f:
        data = json.load(f)

    # Process
    result = process_data(data)

    # Output
    if output:
        with open(output, 'w') as f:
            json.dump(result, f)
        click.echo(f"โœ“ Saved to {output}")
    else:
        click.echo(json.dumps(result, indent=2))
๐Ÿ”Œ Creating a Plugin System
# src/mylib/plugins.py
from typing import Protocol

class ProcessorPlugin(Protocol):
    """Protocol for processor plugins."""

    def process(self, data: dict) -> dict:
        """Process a single item."""
        ...

def load_plugins() -> dict[str, ProcessorPlugin]:
    """Dynamically load all plugins."""
    # Implementation here
    pass

๐ŸŽฏ Project Planning (Recommended First Step)

Why Plan First?

Research shows that projects with documented requirements are 97% more likely to succeed. Poor requirements gathering causes 39% of software project failures. Take 15-30 minutes to plan your project properlyโ€”it will save hours of development time.

Generate Your Project Requirements

Before coding, create comprehensive planning documents using Claude Code's interactive planning workflow:

# Launch the interactive planning workflow
# Note: Specify guides/ directory for output to avoid conflicts with pdoc
claude /plan

What this creates:

  • Product Requirements Document (PRD) - Clear project vision, user needs, and success criteria
  • Technical Specification - Architecture approach, technology decisions, and implementation plan
  • User Stories (if applicable) - Detailed scenarios and acceptance criteria
  • Development Roadmap - Feature prioritization and implementation phases

Planning Workflow Features

  • Research-backed methodology - Based on 2024-2025 software project success factors
  • Adaptive questioning - Adjusts based on project type (library, API, CLI tool, web app)
  • Comprehensive coverage - Business requirements, technical approach, and implementation planning
  • Living documents - Easy to update as requirements evolve
  • AI optimization - Provides Claude with complete project context for better assistance

Project Types Supported

  • Python Libraries - Package development with clear API design
  • CLI Tools - Command-line applications with user workflow planning
  • REST APIs - Service development with endpoint specification
  • Web Applications - Full-stack projects with user experience planning

Sample Planning Session

$ claude /plan

๐ŸŽฏ Let's plan your project for maximum success!

Phase 1: Project Discovery
What is the name of your project? my-data-processor
In one sentence, what does this project do? Transforms messy CSV data into clean, validated datasets
Who will use this project? Data analysts and Python developers working with CSV files

[Interactive session continues...]

โœ… Generated comprehensive planning documents:
   - guides/PRD.md
   - guides/TECHNICAL_SPECIFICATION.md  
   - guides/USER_STORIES.md

> **๐Ÿ“ Important**: Planning documents are saved in `guides/` to avoid conflicts with pdoc-generated API documentation in `docs/`. This also ensures maximum context inclusion for Claude Code.

๐Ÿš€ Ready to start development with clear requirements!

When to Use Planning

  • โœ… Always recommended - 15-30 minutes of planning saves hours of development
  • โœ… New projects - Essential for getting started on the right track
  • โœ… Complex features - Break down complicated requirements into manageable pieces
  • โœ… Team projects - Ensure everyone understands the vision and approach
  • โœ… Client work - Professional documentation and clear expectations

๐Ÿ“‹ Prerequisites

Required Tools:

PyPI Setup (Important - Do This First!):

  1. Reserve your package name on PyPI and TestPyPI
  2. Set up Trusted Publishing:
    • Publisher: GitHub Actions
    • Repository: your-account/your-repo
    • Workflow: pipeline.yaml
    • Environment: pypi

Windows Users:

# Install tools
winget install Python.Python.3.11
winget install twpayne.chezmoi
winget install --id FiloSottile.age

# Set environment for Claude Code
$env:CLAUDE_CODE_GIT_BASH_PATH="C:\gitbash\bin\bash.exe"

AWS Setup (Optional - One Time Per Account):

# Enable GitHub Actions OIDC
aws iam create-open-id-connect-provider \
  --url https://token.actions.githubusercontent.com \
  --client-id-list sts.amazonaws.com

๐Ÿ—๏ธ Project Setup

This template uses a two-stage bootstrap process that eliminates common setup friction:

Stage Purpose When to Run
Stage 1 Template customization Immediately after cloning
Stage 2 AWS integration After sam pipeline bootstrap

Why two stages? This approach prevents dependency conflicts and handles the interactive SAM setup gracefully.

See the Bootstrap Guide for complete setup instructions.

๐Ÿ“š Guides

๐Ÿ“– Complete Guides Index - Organized access to all project guides and instructional content

Quick Links

๐Ÿ“ Documentation Best Practices

API Documentation (Google-style docstrings):

def process_data(data: list[str], format: str = "json") -> dict:
    """Process input data and return formatted results.

    Args:
        data: List of strings to process.
        format: Output format ("json" or "xml").

    Returns:
        Processed data in specified format.

    Example:
        >>> process_data(["item1", "item2"])
        {"processed": ["item1", "item2"]}
    """

Library vs CLI Design:

  • Use __all__ to control public API surface
  • Keep CLI commands in separate modules
  • Document both library and CLI usage in module docstrings

๐Ÿ› ๏ธ Development Workflow

Using Make (Recommended)

# Daily development - clean, simple commands
make test          # Run fast tests (excludes slow/CI-only)
make test-all      # Run all tests including slow ones
make lint          # Lint and auto-fix with ruff
make format        # Format code with ruff
make security      # Run security scans
make docs          # Generate documentation
make clean         # Remove all build artifacts

# See all available commands
make help

Using Poetry Directly

# If you prefer direct commands
poetry run pytest              # Run tests
poetry run pytest -m ""        # Run all tests including slow  
poetry run ruff check --fix    # Lint and fix
poetry run ruff format .       # Format code

# Security and compliance
poetry install --with security,compliance
poetry run bandit -r src/
poetry run safety check
poetry run pip-licenses

๐Ÿ“Š Telemetry (Optional)

Help improve your library by enabling anonymous usage telemetry:

# Check status
ai-test-script telemetry status

# Enable with consent prompt
ai-test-script telemetry enable

# Test configuration
ai-test-script telemetry test

See Telemetry Documentation for details on privacy guarantees and configuration.

๐Ÿ’ก Pro Tips

  • Repository Setup: See .github/REPOSITORY_SETUP.md for branch protection, linear history, and Renovate configuration
  • Renovate: Auto-merge is configured for safe updates (patch/minor)
  • Security Scans: Only run on main/dev branches to keep feature branches fast
  • Windows Users: All commands work in Git Bash, PowerShell, and CMD (see troubleshooting guide)
  • Claude Code: See the Claude Development Guide for AI-assisted development

๐Ÿ–ฅ๏ธ MCP Server Setup

  • Add MCP Servers: Use claude mcp add <server-name> to add servers for GitHub, AWS, and more.
    • GitHub MCP Server Setup:
      1. Ensure CLAUDE_GITHUB_PAT is set as an env var
      2. Run this command:
      claude mcp add-json github "{
        `"command`": `"docker`",
        `"args`": [
          `"run`",
          `"-i`",
          `"--rm`",
          `"-e`",
          `"GITHUB_PERSONAL_ACCESS_TOKEN`",
          `"ghcr.io/github/github-mcp-server`"
        ],
        `"env`": {
          `"GITHUB_PERSONAL_ACCESS_TOKEN`": `"$($env:CLAUDE_GITHUB_PAT)`"
        }
      }"
      
    • Context7: claude mcp add --transport sse context7 https://mcp.context7.com/sse
    claude mcp add --transport sse context7 https://mcp.context7.com/sse
    

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

augint_library-1.29.1.tar.gz (68.6 kB view details)

Uploaded Source

Built Distribution

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

augint_library-1.29.1-py3-none-any.whl (65.4 kB view details)

Uploaded Python 3

File details

Details for the file augint_library-1.29.1.tar.gz.

File metadata

  • Download URL: augint_library-1.29.1.tar.gz
  • Upload date:
  • Size: 68.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for augint_library-1.29.1.tar.gz
Algorithm Hash digest
SHA256 178e0d3ffe4d4991d377a7cc7b5373f8de2ab9b5a0d079cb7f804f87bd550dad
MD5 bc046474c862300f61042a5f4c076b69
BLAKE2b-256 5437e0667a84529b3ad0c6a523199a5191d76852ed07a1979801a7d566d36404

See more details on using hashes here.

Provenance

The following attestation bundles were made for augint_library-1.29.1.tar.gz:

Publisher: pipeline.yaml on svange/augint-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file augint_library-1.29.1-py3-none-any.whl.

File metadata

File hashes

Hashes for augint_library-1.29.1-py3-none-any.whl
Algorithm Hash digest
SHA256 841aeaa0188c613e5a961fc1075c6096c0f3c1249a2e001de8f27540b0d73a08
MD5 4be29a23291ee7b745c99776571b63b3
BLAKE2b-256 bb3d01a6b2f3ccfac4444d0fe9da07073e957bcec4563a55b4857c34128e193d

See more details on using hashes here.

Provenance

The following attestation bundles were made for augint_library-1.29.1-py3-none-any.whl:

Publisher: pipeline.yaml on svange/augint-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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