PYER is a simple Python-based project manager and builder that helps you initialize, run, build, and manage Python projects efficiently. It provides commands to manage project versions and install required libraries.
- Initialize a new Python project with
init. - Run your project using
run. - Build an executable using
build. - Update project version with
app-update <version>. - Manage dependencies with
lib add <library>.
Clone this repository and ensure Python is installed on your system.
git clone <your-repo-url>
cd <repository-folder>Run PYER commands in the terminal:
python pyer.py versionpython pyer.py initYou will be prompted to enter the project name.
python pyer.py runpython pyer.py buildpython pyer.py app-update 1.5Replace 1.5 with the version you want to set.
- Add a library:
python pyer.py lib add numpyThis will install the library and add it to your project's requirements.
python pyer.py init
python pyer.py lib add numpy
python pyer.py run
python pyer.py app-update 1.1
python pyer.py buildpython pyer.py helpThis displays all available commands and usage examples.