Metadata-Version: 2.4
Name: projectme
Version: 0.4.0
Summary: Personalized project scaffolding CLI
Author: tutu026
Maintainer: tutu-firmino
License-Expression: MIT
Project-URL: Homepage, https://github.com/tutu-firmino/ProjectME
Project-URL: Documentation, https://github.com/tutu-firmino/ProjectME/blob/master/DOCUMENTATION.md
Project-URL: Repository, https://github.com/tutu-firmino/ProjectME.git
Project-URL: Issues, https://github.com/tutu-firmino/ProjectME/issues
Project-URL: Changelog, https://github.com/tutu-firmino/ProjectME/blob/master/CHANGELOG.md
Keywords: cli,scaffold,project-generator,python,react,typer
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.9.0
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Requires-Dist: coverage[toml]>=7.0.0; extra == "test"
Provides-Extra: lint
Requires-Dist: ruff>=0.1.0; extra == "lint"
Provides-Extra: build
Requires-Dist: build>=1.0.0; extra == "build"
Requires-Dist: twine>=6.2.0; extra == "build"
Dynamic: license-file

# ![logo](https://github.com/tutu-firmino/ProjectME/blob/master/assets/logo.svg)

[![Version](https://img.shields.io/badge/version-0.4.0-bright_green)](https://github.com/tutu-firmino/ProjectME/releases)
[![Python](https://img.shields.io/badge/python-3.10%2B-blue)](https://www.python.org/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code style: Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
> A CLI for scaffolding React, Next.js, Express, and Python projects.

ProjectME generates clean, ready-to-use project structures from the command line. Pick your stack, pass a few flags, and start coding — or define your project in a `.projectme` manifest file.

---

## Quick Start

### Installation

```bash
pip install projectme
```

### Scaffolding

```bash
projectme create my-app react
projectme create my-app nextjs --tailwind
projectme create my-server express --rest --ts
projectme create my-api python --fastapi
```

Or build from a manifest file:

```bash
projectme read manifest
```

For full usage, options, and examples, see [DOCUMENTATION.md](DOCUMENTATION.md).

---

## Feedback

We welcome feedback and suggestions to help improve the project. Thank you!

---

## License

[MIT](LICENSE)
