Metadata-Version: 2.1
Name: ppm-cmd
Version: 0.1.3
Summary: python project manager
Author: manishshettym
Author-email: manishs@berkeley.edu
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: poetry (>=1.6.1,<2.0.0)
Requires-Dist: questionary (>=2.0.1,<3.0.0)
Requires-Dist: rich (>=13.6.0,<14.0.0)
Requires-Dist: typer (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown

# `ppm`: personal project manager

![demo](/assets/demo.gif)

## Usage

`ppm new` - Create a new project

`ppm ls` - List all projects

`ppm rm <proj-name>` - Remove project

`ppm open <proj-name>` - Open project in editor

# Installation

## Install from [PyPI](https://pypi.org/project/ppm-cmd/)

```bash
pip install ppm-cmd
```
## Install from source

```bash
git clone <repo-url>
cd ppm
poetry install
```

