Skip to content

Latest commit

 

History

History
50 lines (45 loc) · 1.36 KB

README.md

File metadata and controls

50 lines (45 loc) · 1.36 KB

PyIDE Python Project Templater


Language Linux Github WAM

RU:PYTHON

This is a simple Python project templater that creates a basic project structure for a Python project:

.
├── .git/
├── .venv/
├── .gitignore
└── main.py

2 directories, 2 files

The newly created project will have version control (git), a virtual environment, a .gitignore file in which the .venv directory is flagged, and a main.py file.

Usage

$ ./pyide <project_name> -m <modules>

For more specific information:

$ ./pyide --help

Optionally you can specify the editor you want to use:

Visual Studio Code

$ ./pyide <project_name> -m <modules> -c

PyCharm

$ ./pyide <project_name> -m <modules> -p

Zed

$ ./pyide <project_name> -m <modules> -z

Compilation

$ cargo build --release