Metadata-Version: 2.4
Name: rapidkit-core
Version: 0.3.0rc1
Summary: Public staging playground where we polish the next wave of RapidKit magic together
License: MIT
License-File: LICENSE
Keywords: scaffolding,boilerplate,fastapi,codegen,devtools
Author: RapidKit Team
Author-email: team@getrapidkit.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Code Generators
Requires-Dist: black (>=25.9.0,<26.0.0)
Requires-Dist: click (>=8.3,<8.4)
Requires-Dist: cryptography (>=46.0.2,<47.0.0)
Requires-Dist: email-validator (>=2.1,<3.0)
Requires-Dist: fastapi (>=0.119.0,<1.0.0)
Requires-Dist: jinja2 (>=3.1.6,<4.0.0)
Requires-Dist: jsonschema (>=4.25.1,<5.0.0)
Requires-Dist: packaging (>=25.0,<26.0)
Requires-Dist: pydantic (>=2.12.2)
Requires-Dist: pydantic-settings (>=2.11,<3.0)
Requires-Dist: pygithub (>=2.7.0,<3.0.0)
Requires-Dist: pynacl (>=1.5.0,<2.0.0)
Requires-Dist: pyyaml (>=6.0.3,<7.0.0)
Requires-Dist: requests (>=2.32.5,<3.0.0)
Requires-Dist: rich (>=14.2.0,<15.0.0)
Requires-Dist: starlette (>=0.49.1,<0.50)
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
Requires-Dist: typer (>=0.19,<0.20)
Requires-Dist: types-requests (>=2.32.4.20250913,<3.0.0.0)
Requires-Dist: uvicorn[standard] (>=0.37.0)
Requires-Dist: yamllint (>=1.37.1,<2.0.0)
Project-URL: Documentation, https://www.getrapidkit.com/docs
Project-URL: Homepage, https://www.getrapidkit.com/
Project-URL: Repository, https://github.com/getrapidkit/community-staging
Description-Content-Type: text/markdown

# RapidKit Core (Pre-release / RC)

This is the **pre-release channel** for RapidKit Core.

- Website: https://www.getrapidkit.com/
- Docs: https://www.getrapidkit.com/docs
- Staging repo: https://github.com/getrapidkit/community-staging
- Stable repo: https://github.com/getrapidkit/rapidkit-core

## What you get

- A production-grade scaffolding engine for FastAPI + NestJS
- A consistent modules system (install, uninstall, upgrade, diff)
- Project-aware commands (`init`, `dev`, `build`, `test`, `lint`, `format`)
- Docker-ready defaults and quality gates

## Install

The PyPI project is `rapidkit-core` and the CLI command is `rapidkit`.

```bash
# Recommended: isolated CLI (supports prereleases)
pipx install --pip-args="--pre" rapidkit-core

# Or: in the current interpreter
python -m pip install --pre -U rapidkit-core

rapidkit --version
rapidkit --help
```

## Quick start

```bash
# Create a project (interactive)
rapidkit create

# Or: non-interactive
rapidkit create project fastapi.standard my-api

cd my-api
rapidkit init
rapidkit dev
```

## Notes (important)

- RC builds can include breaking changes between versions.
- There is also an npm package named `rapidkit` that provides a `rapidkit` command. If you install
  both globally, whichever one comes first in your PATH will run.

