A simple command-line tool to create Python projects, written in Rust.
Create Python projects, create a virtual environment, and create an empty git repository for it, with only one command.
Note
This isn't a special repository, I wrote this tool to speedup my works, and practice Rust language.
Features:
Virtualenv
andVenv
scripts are supported.git
is supported:- Create an empty git repository, you can specify branch name,
- Set user name, and email address for it,
- Add new remote to it.
You can build the project from source, with rust compiler.
First way:
- Use the
cargo install
command:
cargo install --git 'https://github.com/awolverp/createpy-rs'
- Now the tool is installed and you can use it:
createpy -h
Tip
You can uninstall it by using cargo uninstall createpy
command
Second way:
- First, download source from here by using the
git clone
(or any tool you can use)
git clone 'https://github.com/awolverp/createpy-rs'
- Go to the source directory.
- Run this command:
cargo build --release
- Now you can use this tool, the binary file is stored here:
./target/release/createpy
:
./target/release/createpy -h