Skip to content
/ pyer Public

A new, modern python project manager

Alperosci/pyer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PYER

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.

Features

  • 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>.

Installation

Clone this repository and ensure Python is installed on your system.

git clone <your-repo-url>
cd <repository-folder>

Usage

Run PYER commands in the terminal:

Display version

python pyer.py version

Initialize a new project

python pyer.py init

You will be prompted to enter the project name.

Run your project

python pyer.py run

Build your project

python pyer.py build

Update project version

python pyer.py app-update 1.5

Replace 1.5 with the version you want to set.

Manage libraries

  • Add a library:
python pyer.py lib add numpy

This will install the library and add it to your project's requirements.

Example Workflow

python pyer.py init
python pyer.py lib add numpy
python pyer.py run
python pyer.py app-update 1.1
python pyer.py build

Help

python pyer.py help

This displays all available commands and usage examples.

About

A new, modern python project manager

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages