Skip to main content

Fast task runner for Python projects

Project description

⚡ Zetten

The High-Performance Task Runner for Python Backends. Parallel. Deterministic. Fast.

PyPI - Version PyPI - License PyPI - Python Version Nightly Build

Zetten is a dependency-aware execution engine designed to unify how you run tests, linters, and builds. It ensures that your workflow remains identical across local development environments and any CI platform, only faster.


The Zetten Philosophy

Modern Python projects often require coordinating various tools (tests, type-checkers, formatters). Zetten eliminates "Glue Code Fatigue" by providing:

  • Parallel Execution: Automatically identifies independent tasks and runs them concurrently across your CPU cores.
  • Three-Tier Variable System: Advanced command templating with a strict priority hierarchy: CLI Flags (-k) > Config Vars > Environment Variables.
  • Parallel Execution: Automatically identifies independent tasks and runs them concurrently across your CPU cores.
  • Three-Tier Variable System: Advanced command templating with a strict priority hierarchy: CLI Flags (-k) > Config Vars > Environment Variables.
  • Smart Caching: Uses content-addressable hashing to skip tasks if their specific inputs haven't changed since the last run.
  • Platform Agnostic: Behaves identically on macOS, Windows, Linux, or any CI/CD provider.
  • Dependency Awareness: Define a Directed Acyclic Graph (DAG) of tasks to ensure correct execution order (e.g., setup always precedes test).

🤖 AI-First (Vibe Coding)

Zetten is designed to be the "API" for ANY AI agent. It comes with built-in configuration files for:

  • Cursor (.cursorrules)
  • Windsurf (.windsurfrules)
  • GitHub Copilot (.github/copilot-instructions.md)
  • Claude Code (CLAUDE.md)

These files automatically point your AI to docs/ai_context.md, ensuring it knows exactly how to build, test, and run your project without hallucinating commands.

"Zetten allows me to just tell Cursor 'run the tests' and it knows exactly what to do, efficiently."


Features

  • ⚡ Worker Pool Concurrency: Maximizes resource usage by running non-dependent tasks in parallel.
  • 🏷️ CI Tagging: Execute logical groups of tasks (e.g., run --tag ci) with a single command.
  • 🛡️ Failure Propagation: If a foundational task fails, Zetten halts downstream execution to prevent cascading errors.
  • 🔍 Intelligent Diagnostics: Includes ztn doctor to identify environment inconsistencies instantly.
  • ⏱️ Performance Analytics: (Coming Soon) Real-time insights into time saved via parallelism.


Performance

Zetten is built for speed. Benchmarks against popular task runners show it provides the fastest developer experience for incremental builds.

Metric Tool Time vs Zetten
Startup ztn 2.08 ms 1.00x
(CLI overhead) just 2.15 ms 1.04x
make 3.85 ms 1.85x
poe 41.88 ms 20.15x
Smart Caching ztn 3.49 ms 1.00x
(No-op re-run) just 4.26 ms 1.22x
make 5.63 ms 1.61x
poe 64.68 ms 18.52x

> Benchmarks run on macOS (Apple Silicon). Startup measures tool --version. Smart Caching measures time to detect no input changes and skip execution.

See Full Methodology & Detailed Results


🛠️ Quick Start

Install Zetten:

pip install zetten

Initiate a project:

ztn init

For Python script execution:

[tool.zetten.tasks.hello]
script = "my_module:main"  # Runs: python -c "import my_module; my_module.main()"
description = "Run a python function"

Define tasks in pyproject.toml:

[tool.zetten.tasks.lint]
cmd = "ruff check src"
inputs = ["src/"]
tags = ["ci"]

[tool.zetten.tasks.test]
cmd = "pytest"
depends_on = ["lint"]
inputs = ["src/", "tests/"]
tags = ["ci"]

[tool.zetten.tasks.build]
description = "Build the project"
# Supports Fallback Syntax: ${VAR:-default}
cmd = "mkdir -p ${build_dir} && python -m build --outdir ${DEST:-dist}"
depends_on = ["lint"]
inputs = ["src/"]

Define tasks in zetten.toml:

[tasks.setup]
cmd = "pip install -r requirements.txt"

[tasks.lint]
cmd = "ruff check src"
inputs = ["src/"]
tags = ["ci"]

[tasks.test]
cmd = "pytest"
depends_on = ["setup"]
inputs = ["src/", "tests/"]
tags = ["ci"]

Run tasks:

ztn run test
ztn run lint test

Zetten will only re-run tasks when their inputs change.


The Variable Hierarchy

Zetten uses a deterministic three-tier system to resolve variables:

  • Tier 1 (CLI): ztn run build -k build_dir=output (Highest Priority)
  • Tier 2 (Config): Values defined in [tool.zetten.vars]
  • Tier 3 (Env): System environment variables (e.g., $USER, $PATH)

Running in CI

Zetten is designed for the modern CI/CD pipeline. By using Tags and Strict Mode, you can ensure your pipeline is both flexible and safe.

# Force a specific version and environment in CI
ztn run --tag ci -k VERSION=${GITHUB_SHA} -k ENV=prod

If a foundational task fails, Zetten halts downstream execution immediately to save CI minutes and prevent cascading failures.

Configuration Model

Configuration is explicit by design:

  • No templating
  • No conditionals
  • No implicit behavior

Configuration lives in:

  • pyproject.toml (preferred)
  • zetten.toml (for legacy or minimal projects)

If no configuration is found, Zetten will explain how to resolve the issue.


Commands

  • ztn run <tasks> — Execute tasks with parallel dependency resolution.
  • ztn run <task> -k KEY=VAL — Override any variable via the CLI.
  • ztn watch <tasks> — Precision re-runs on input changes.
  • ztn graph — Visualizes the Directed Acyclic Graph (DAG) of your tasks.
  • ztn doctor — Diagnoses configuration and environmental health issues.
  • ztn init — Interactive project setup and template generation.

🛡 Status

Zetten is currently in v1.3.2. If no configuration file is found, Zetten will provide clear instructions on how to initialize your project.


Documentation

Full documentation is available at: docs.zetten.in


🤝 Contributing

We love Rust and Python! If you want to help make Zetten even faster:

  • Fork the repo.
  • Add your feature (don't forget the tests!).
  • Open a Pull Request.

Built with ❤️ for the Python community using the speed of Rust.

Please open an issue or discussion on GitHub before proposing large changes.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

zetten-1.3.4-py3-none-win_amd64.whl (1.8 MB view details)

Uploaded Python 3Windows x86-64

zetten-1.3.4-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.9 MB view details)

Uploaded Python 3manylinux: glibc 2.5+ x86-64

zetten-1.3.4-py3-none-macosx_11_0_x86_64.whl (1.7 MB view details)

Uploaded Python 3macOS 11.0+ x86-64

zetten-1.3.4-py3-none-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

File details

Details for the file zetten-1.3.4-py3-none-win_amd64.whl.

File metadata

  • Download URL: zetten-1.3.4-py3-none-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for zetten-1.3.4-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 7d075b6e70f0d4cfb5fd92d45934e3fb20b1ea4ea7eee677c2b78b2c77bef9c1
MD5 b31d61c7536826f567db88c21cd7e4f2
BLAKE2b-256 0b22b4cf6e86ccc0bbb7ca7f1b9df07e1ae422553193166499f097b6f4a09a71

See more details on using hashes here.

File details

Details for the file zetten-1.3.4-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zetten-1.3.4-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed23cec8cbd995dc63d17b4ae2b8656fa248f7b1fd88ae903bd1746986a01592
MD5 c5cdbfe90519c6478ef4de9394e4f461
BLAKE2b-256 550e566bb5c290554b8c539bec1d2c40117483d3805ad7cadbcc200fc632deec

See more details on using hashes here.

File details

Details for the file zetten-1.3.4-py3-none-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zetten-1.3.4-py3-none-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 556523a0c581437d8739620fcefda9ed232412c7d1475218c0b5a991ca14b4bb
MD5 1e85627bdef56aa5e92666d1cf45407f
BLAKE2b-256 08d891672863fd20426b428ba70b4e452022e2bb10011a8666497f488bd0139e

See more details on using hashes here.

File details

Details for the file zetten-1.3.4-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zetten-1.3.4-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 958b1dde395e3439bb19515af1eb04a8d7978c24ad8d9d372b5c23164403fd3e
MD5 13dbae535b3e52f1ac9e48c810f9e5c5
BLAKE2b-256 d2952a9126a003c5e9cedc077d7e4b3c0690444fff515d0e4b18b8b250d9de8a

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