Metadata-Version: 2.4
Name: pyroject
Version: 0.1.2
Summary: A lightweight Python project manager inspired by npm
Home-page: https://github.com/FowluhhDev/pyroject
Author: Mason Fowler
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: setuptools>=60.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Pyroject

Pyroject is a lightweight Python project manager inspired by npm.

## Features

- Install dependencies from `project.json`
- Run scripts like `npm run <script>`
- Install pip packages on the fly

## Usage

```bash
# Install dependencies
pyroject install

# Run a script
pyroject run dev

# Install a pip package
pyroject pip-install flask
```
