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.
$ ./pyide <project_name> -m <modules>
For more specific information:
$ ./pyide --help
Optionally you can specify the editor you want to use:
$ ./pyide <project_name> -m <modules> -c
$ ./pyide <project_name> -m <modules> -p
$ ./pyide <project_name> -m <modules> -z
$ cargo build --release