https://github.com/royreznik/plz
Simple python virtual environment and dependences manager wrapping `piptools` and `virtualenv`
https://github.com/royreznik/plz
cli dependency-manager lock pack packaging pip-tools python virtualenv virtualenv-manager
Last synced: 5 months ago
JSON representation
Simple python virtual environment and dependences manager wrapping `piptools` and `virtualenv`
- Host: GitHub
- URL: https://github.com/royreznik/plz
- Owner: royreznik
- License: mit
- Created: 2022-09-27T16:29:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-09T12:09:20.000Z (over 3 years ago)
- Last Synced: 2025-12-06T04:21:57.499Z (7 months ago)
- Topics: cli, dependency-manager, lock, pack, packaging, pip-tools, python, virtualenv, virtualenv-manager
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# plz




[](https://github.com/royreznik/plz/actions/workflows/ci.yml)

Lightweight and simple python virtual environment and dependencies manager
## Install
```bash
pip install plz
```
Usage
```bash
plz init
echo "reqeusts" >> requirements.in
plz lock
vi setup.py
plz install
```
## Developing
```bash
make install
make test
make format
make lint
```