Metadata-Version: 2.4
Name: quickscale
Version: 0.83.0
Summary: Meta-package that installs quickscale-core and quickscale-cli together
License-Expression: Apache-2.0
Keywords: django,cli,scaffolding,project-generator
Author: Experto AI
Author-email: victor@experto.ai
Requires-Python: >=3.12,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: quickscale-cli (>=0.83.0,<0.84.0)
Requires-Dist: quickscale-core (>=0.83.0,<0.84.0)
Project-URL: Documentation, https://github.com/Experto-AI/quickscale/tree/main/docs
Project-URL: Homepage, https://github.com/Experto-AI/quickscale
Project-URL: Repository, https://github.com/Experto-AI/quickscale
Description-Content-Type: text/markdown

# quickscale

Meta-package for QuickScale.

This package exists to install `quickscale-core` and `quickscale-cli` together so end users can get the standard QuickScale toolchain with a single dependency.

## What this package does

- Declares the combined dependency bundle in this package's `pyproject.toml`
- Ships a minimal import package at `quickscale`
- Provides the easiest install target for most users

## Install

```bash
pip install quickscale
```

Or with Poetry:

```bash
poetry add quickscale
```

## After installation

```bash
quickscale plan myapp
cd myapp
quickscale apply
```

## Related packages

- [quickscale-cli README](https://github.com/Experto-AI/quickscale/blob/main/quickscale_cli/README.md) - CLI commands and workflow surface
- [quickscale-core README](https://github.com/Experto-AI/quickscale/blob/main/quickscale_core/README.md) - scaffolding engine and templates

## Documentation

- Repository overview: [QuickScale README](https://github.com/Experto-AI/quickscale/blob/main/README.md)
- Technical decisions: [docs/technical/decisions.md](https://github.com/Experto-AI/quickscale/blob/main/docs/technical/decisions.md)
- Start guide: [START_HERE.md](https://github.com/Experto-AI/quickscale/blob/main/START_HERE.md)

This README is package-local context only. Root documentation remains authoritative for repo-wide behavior and policy.

