Metadata-Version: 2.1
Name: pie-manager
Version: 1.0.4
Summary: A very loose and easy to use project manager
Home-page: https://github.com/skandabhairava/Pie-manager
Author: Terroid
Author-email: skandabhairava@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/skandabhairava/Pie-manager/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


# PIE Project Manager


<p align="center">
  <img width="250" height="250" src="https://cdn.discordapp.com/attachments/731940266570809485/953666263161372782/piepy.png">
</p>

## Pie is a loose structured python project manager.

A Loose structured and easy to use python project manager. Different sets of
commands can be accessed by using the cli inside a project directory or
outside of it.
<hr>
<br>

## Installation

Install PIE Project Manager on pip

```bash
  pip install pie-manager
  pip3 install pie-manager 
```
    
<hr>
<br>

## Changelogs

[Changelogs](https://github.com/skandabhairava/Pie-manager/blob/main/CHANGELOG.md)

<hr>
<br>

## Usage

```bash
pie <cli-command> <cli-arguments> -<cli-options>
pie <project-dir> ## while outside project dir
pie run <args> ## while inside project dir
pie <file>.py <args> ## anywhere
```

<hr>
<br>

## CLI Commands

> General

| CLI Command| Description|
| -- | -- |
| -V, --version | Prints the pie version number. |
| --help | Shows the help message for a certain command. |
| changelog | Displays the changelog for the current version of PIE. |

<br>

> Outside a project

| CLI Command| Description|
| -- | -- |
| cfg | Edits the config file. |
| delete-project | Deletes a project. |
| listproj | Lists all the projects in the current directory. |
| new | Creates a new python project. |
| pkg | Packages a project. |
| unpkg | Unpacks a project. |

<br>

> Inside a project (Directory should contain a "project.json")

| CLI Command| Description|
| -- | -- |
| autoinstall | Automatically installs all modules to the venv, used in the project. |
| install | Installs a package in the virtual environment. |
| list | Displays pip list of the virtual environment. |
| pip | Runs pip commands from the virtual environment. |
| push | Pushes the repository to the specified remote and branch (Assuming Git repo is initialised). |
| reqs | Generates a requirements.txt file for the project. |
| run | Run a project while inside it's directory. |
| show | Displays pip package of the virtual environment. |
| uninstall | Uninstall a package from the virtual environment. |
| ver | Displays or Changes the version of the python project. |

<br>

## CLI Demonstration

https://user-images.githubusercontent.com/58636952/158674913-2b969a30-54db-447b-9541-78871ff18356.mp4


