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 filesThe 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 --helpOptionally you can specify the Python package and project manager you want to use:
$ ./pyide <project_name> -m <modules> -u$ ./pyide <project_name> -m <modules> -pIt's also possible to specify the editor you'd like to use:
$ ./pyide <project_name> -m <modules> -i <editor>Where <editor> can be one of the following:
vscodepycharmzed
$ cargo build --release