Metadata-Version: 2.4
Name: quickscale-core
Version: 0.76.0
Summary: Core scaffolding and utilities for QuickScale Django project generator
License-Expression: Apache-2.0
Keywords: django,scaffolding,project-generator,saas
Author: Experto AI
Author-email: victor@experto.ai
Requires-Python: >=3.14,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Framework :: Django
Classifier: Framework :: Django :: 6.0
Requires-Dist: Jinja2 (>=3.1.6,<4.0.0)
Requires-Dist: pyyaml (>=6.0.3,<7.0.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-core

Core scaffolding package for QuickScale.

This package contains the reusable project-generation logic, templates, configuration helpers, and wiring primitives used by the CLI.

## What lives here

- Project generator implementation under `src/quickscale_core/generator/`
- Shared templates bundled into published artifacts
- Configuration and settings helpers used during generation
- Manifest and module-wiring utilities shared across first-party workflows

## Relationship to other packages

- `quickscale-cli` provides the end-user command surface
- `quickscale-core` provides the scaffolding engine those commands call
- `quickscale` installs both packages together as the convenience meta-package

## Local development context

- Packaging metadata: [pyproject.toml](./pyproject.toml)
- Repository overview: [../README.md](../README.md)
- Authoritative technical policy: [../docs/technical/decisions.md](../docs/technical/decisions.md)
- Directory/layout reference: [../docs/technical/scaffolding.md](../docs/technical/scaffolding.md)

## Notes for maintainers

- Template changes in this package affect generated project output
- Published package artifacts must continue to include template files declared in [pyproject.toml](./pyproject.toml)
- This README is package-local context only; root documentation remains the source of truth for repo-wide policy

