Metadata-Version: 2.4
Name: zetten
Version: 1.0.7
Summary: Fast task runner for Python projects
Author-email: Amit Deb <deb.amit2013@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/amit-devb/zetten
Project-URL: Documentation, https://github.com/amit-devb/zetten/wiki
Project-URL: Repository, https://github.com/amit-devb/zetten
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ⚡ Zetten

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

[![PyPI - Version](https://img.shields.io/pypi/v/zetten?color=orange&label=pypi)](https://pypi.org/project/zetten/)
[![PyPI - License](https://img.shields.io/pypi/l/zetten?color=brightgreen&label=license)](https://github.com/amit-devb/zetten/blob/main/LICENSE)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/zetten?color=blue&label=python)](https://pypi.org/project/zetten/)
[![CI Status](https://img.shields.io/github/check-runs/amit-devb/zetten/main?label=CI&logo=github)](https://github.com/amit-devb/zetten/actions)

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.
* **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`).

---

## ✨ 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 `zetten doctor` to identify environment inconsistencies instantly.
- **⏱️ Performance Analytics:** (Coming Soon) Real-time insights into time saved via parallelism.

---

## 🛠️ Quick Start
Install Zetten:

```bash
pip install zetten
```

Initiate a project:

```bash
zetten init
```

Define tasks in pyproject.toml:
```bash
[tool.zetten.tasks.lint]
cmd = "ruff check src"
inputs = ["src/"]
tags = ["ci", "pre-commit"]

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

Define tasks in zetten.toml:
```bash
[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:
```bash
zetten run test
zetten run lint test
```
Zetten will only re-run tasks when their inputs change.

---


## 🚀 Running in CI
Zetten is designed to be the single entry point for your CI pipelines. By using Tags, you can control exactly what runs without complex YAML logic.
Order of Execution: If you run zetten run --tag ci, Zetten calculates the dependency tree:

- It identifies tasks with no dependencies (e.g., lint).
- It executes them in parallel.
- Once lint succeeds, it "unlocks" and runs the test.
- Skipping: If the files in src/ haven't changed since the last CI run (and you persist the .zetten folder), Zetten will skip execution and return immediately.


## ⚙️ 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 fix it.

---


## 🛠 Commands
- zetten run <tasks> — execute tasks deterministically
- zetten watch <tasks> — re-run tasks on input changes
- zetten graph — inspect the task dependency graph
- zetten doctor — diagnose configuration and environment issues
- All commands produce stable, CI-safe output with well-defined exit codes.

---

## 🛡 Status
Zetten is currently in v0.1. If no configuration file is found, Zetten will provide clear instructions on how to initialize your project.

---

## Documentation
Full documentation is available at: [Github Wiki](https://github.com/amit-devb/zetten/wiki)

---

## 🤝 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.
