Clifold is a command line tool that can quickly scaffold the python projects.
- Minimum Python 3.6 installed
- Pip 3 installed
First, make sure you have at least python3.6 and pip3 installed.
In linux distributions, at least python3.6 is normally preinstalled, but pip3 isn't. To install pip3 and clifold in linux distributions,
sudo pacman -S python-pip
pip3 install clifold
sudo apt install python3-venv python3-pip
pip3 install clifold
sudo zypper install python3-pip python3-setuptools python3-wheel
pip3 install clifold
sudo dnf install python3 python3-wheel
pip3 install clifold
For CentOS/RHEL, please follow this link.
Pip3 probably have been installed if python3 has been installed from python.org. After that,
pip3 install clifold
pip3 install clifold
After clifold has been installed, you will have clif command to start using.
usage: clif <arg> [options]
π A CLI tool for scaffolding any Python Projects π
Argument:
project_name Project name to create with venv
Options:
-g, --git Make git initialization (Default: True)
-ng, --no-git Skip git initialization
-p, --pkg Ask packages to install (Default: True)
-np, --no-pkg Skip packages installation
-i, --init Create setup.py file (Default: True)
-ni, --no-init Skip setup.py file
-V, --version Output version number
-h, --help Output usage information
