Compy is a tool for initializing and managing Python projects.
To install Compy, run the following command:
sh -c "$(curl -sSL https://raw.githubusercontent.com/Etto48/compy/main/install.sh)"
To uninstall Compy, run the following command:
sh -c "$(curl -sSL https://raw.githubusercontent.com/Etto48/compy/main/install.sh)" -- --uninstall
To initialize a new Python project, run the following command:
compy init .
This will create a new Python project in the current directory.
For a list of available commands, run the following command:
compy --help
Compy can be configured by placing a file in ~/.config/compy/compy.toml
or ~/.config/compy.toml
.
The following settings are available:
name
: The author name.email
: The author email.license
: The license to use. One ofMIT
orGPL3
.version
: The project version.description
: The project description.python_executable
: The Python executable to use. Defaults topython3
.