Skip to content

Logopsp (Python Scaffolding Projects)

psp is a blazing fast command line utility to scaffold your Python project, written in Rust.

  • โšก๏ธ 1-100x faster compared to other scaffolding tools
  • ๐Ÿ› ๏ธ pyproject.toml support
  • ๐Ÿค Python 3.14 compatibility
  • ๐Ÿ—ƒ Scaffolding file and folder structures for your Python project
  • ๐Ÿ—‚๏ธ Unit-test and pytest support
  • ๐Ÿงช Create a virtual environment
  • ๐Ÿ”ง Automagically dependencies installation
  • ๐Ÿช› Add build and deploy dependencies to distribute the package
  • ๐Ÿ“ tox configuration supports and remotes CI like CircleCI, TravisCI, GitHub Actions and Gitlab CI/CD
  • โŒจ๏ธ MkDocs and Sphinx documentation support
  • ๐Ÿงฐ Initialize git repository and gitignore file
  • ๐ŸŒŽ GitHub and Gitlab remote repository support
  • ๐Ÿ“‘ Create README, LICENSE, CONTRIBUTING, CODE_OF_CONDUCT and CHANGES files
  • ๐Ÿณ Create Dockerfile and Containerfile for your project
  • ๐Ÿ’ก Can use quick, simple and full argument for rapid configuration
  • ๐Ÿ’พ Create $HOME/.psp.env and $PWD/.env files with your customizations
  • ๐ŸŽ›๏ธ Can use some PSP_ variables to control your defaults
  • ๐Ÿ“ฆ Support pip, conda and uv package manager
  • ๐Ÿงฎ Support hatch, maturin and poetry builder
  • ๐Ÿฟ Stop, pause and resume project creation when you want; see Resume
  • ๐Ÿ–‡๏ธ [Handlebars] custom templates engine (with local cache) to customize project; see Template

๐Ÿš€ Get Started in 30 Seconds

Made with VHS

The result is:

$> tree dream/ --filelimit=19 -a
dream                   # Project folder
โ”œโ”€โ”€ LICENSE.md          # License file
โ”œโ”€โ”€ pyproject.toml      # Python package configuration file
โ”œโ”€โ”€ README.md           # Readme file
โ”œโ”€โ”€ CHANGES.md          # List of changes
โ”œโ”€โ”€ .circleci           # CI folder
โ”‚   โ””โ”€โ”€ config.yml      # CI configuration file
โ”œโ”€โ”€ CODE_OF_CONDUCT.md  # Code of Conduct
โ”œโ”€โ”€ CONTRIBUTING.md     # Contributing guide lines
โ”œโ”€โ”€ Containerfile       # Standard container file for build image
โ”œโ”€โ”€ Dockerfile          # Docker container file for build image
โ”œโ”€โ”€ Makefile            # Makefile for command make; make help
โ”œโ”€โ”€ requirements.txt    # Dependencies list used by third programs
โ”œโ”€โ”€ docs                # Documentation folder: Sphinx/MKDocs
โ”‚   โ”œโ”€โ”€ build
โ”‚   โ”œโ”€โ”€ make.bat
โ”‚   โ”œโ”€โ”€ Makefile
โ”‚   โ””โ”€โ”€ source
โ”‚       โ”œโ”€โ”€ conf.py
โ”‚       โ”œโ”€โ”€ index.rst
โ”‚       โ”œโ”€โ”€ _static
โ”‚       โ””โ”€โ”€ _templates
โ”œโ”€โ”€ .git                # Git folder
โ”‚   โ”œโ”€โ”€ branches
โ”‚   โ”œโ”€โ”€ config
โ”‚   โ”œโ”€โ”€ description
โ”‚   โ”œโ”€โ”€ HEAD
โ”‚   โ”œโ”€โ”€ hooks  [14 entries exceeds filelimit, not opening dir]
โ”‚   โ”œโ”€โ”€ info
โ”‚   โ”‚   โ””โ”€โ”€ exclude
โ”‚   โ”œโ”€โ”€ objects
โ”‚   โ”‚   โ”œโ”€โ”€ info
โ”‚   โ”‚   โ””โ”€โ”€ pack
โ”‚   โ””โ”€โ”€ refs
โ”‚       โ”œโ”€โ”€ heads
โ”‚       โ””โ”€โ”€ tags
โ”œโ”€โ”€ .github             # Github issue and merge templates
โ”‚   โ”œโ”€โ”€ ISSUE_TEMPLATE
โ”‚   โ”‚   โ”œโ”€โ”€ bug.yml
โ”‚   โ”‚   โ”œโ”€โ”€ config.yml
โ”‚   โ”‚   โ””โ”€โ”€ feature.yml
โ”‚   โ””โ”€โ”€ PULL_REQUEST_TEMPLATE
โ”‚       โ””โ”€โ”€ pull_request_template.md
โ”œโ”€โ”€ .gitignore          # Git ignore file
โ”œโ”€โ”€ .psp.log            # Update log (if enabled)
โ”œโ”€โ”€ .dockerignore       # Docker ignore file
โ”œโ”€โ”€ .containerignore    # Container ignore file
โ”œโ”€โ”€ dream               # Python package
โ”‚   โ””โ”€โ”€ __init__.py
โ”œโ”€โ”€ tests               # Tests package for modules
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ””โ”€โ”€ test_dream.py   # Test module "test_<name_python_package>"
โ”œโ”€โ”€ tox.ini             # Tox configuration files
โ”œโ”€โ”€ samples
โ”‚   โ””โ”€โ”€ dream_sample.py # Sample code of package "<name_python_package>_sample"
โ””โ”€โ”€ .venv               # Virtual environment
    โ”œโ”€โ”€ bin  [33 entries exceeds filelimit, not opening dir]
    โ”œโ”€โ”€ include
    โ”‚   โ””โ”€โ”€ python3.14
    โ”œโ”€โ”€ lib
    โ”‚   โ””โ”€โ”€ python3.14
    โ”‚       โ””โ”€โ”€ site-packages  [68 entries exceeds filelimit, not opening dir]
    โ”œโ”€โ”€ lib64 -> lib
    โ””โ”€โ”€ pyvenv.cfg

29 directories, 44 files

And git status is:

$> git status
On branch main

No commits yet
...
$> git remote get-url origin
git@github.com:MatteoGuadrini/dream.git

Help

For help message, type:

$> psp help

โ”โ”โ”ƒโ”โ”โ”โ”โ”โ”›โ”โ”โ”ƒ
โ”โ”โ”›โ”โ”โ”โ”โ”โ”ƒโ”โ”โ”›
โ”›  โ”โ”โ”โ”โ”โ”›โ”›
psp (Python Scaffolding Projects), version 0.8.0
usage: psp [shortcut]
ie: psp [help|quick|simple|full]

shortcut:
    help:   print this help message
    quick:  enables a rapid setup (few options included)
    simple: enables a basic setup (only Python package)
    full:   enables a full setup (all options)

links:
    repository:     https://github.com/MatteoGuadrini/psp
    documentation:  https://psp.readthedocs.io/

templates:
    cache:      true
    repository: https://raw.githubusercontent.com/MatteoGuadrini/psp_templates/refs/heads/main

variables:
    ["PSP_GIT","PSP_GIT_REMOTE","PSP_GIT_USER","PSP_CACHE"]

environments:
    Python version: 3.14

[!NOTE] More details for shortcuts, variables and other things, available in official documentation: psp docs

[!IMPORTANT] Licenses and templates folder in this repository is deprecated; please update psp to point of the new templates repository: psp templates

Why choose psp?

psp is simple, fast, effective, declarative, and supports Python and the entire ecosystem of tools written for it. Rather than replacing it, psp seeks to integrate and provide a useful scaffold for the end user.

Differences with other tools

  • cookiecutter: Templates are prescriptive by design. Cookiecutter enforces a particular project structure and conventions, which may not align with your or your organization's preferences. If a template's opinions don't match your needs, you're forced to either choose a different template or heavily modify an existing one. This can become tedious when you need something slightly different from what's available. psp is dynamic; scaffold what you need.
  • PyScaffold: PyScaffold doesn't manage virtual environments directly. You have to manually create and activate a virtualenv or use external tools like pipenv, poetry, conda, or pyenv. While PyScaffold documents integrations with these tools, it doesn't provide a unified interface for environment management like psp do.

psp asks only what you need. By configuring a few environment variables, you can automate any project; in seconds, not hours.

๐Ÿ”Œ Prerequisites

psp has four mandatory prerequisetes installed on own machine:

  • git
  • python3
  • pip
  • curl (Linux/MacOS only)

macOS prerequisites installation

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install python git

Windows prerequisites installation

winget install -e --id Git.Git
winget install -e --id Python.Python.3.14

Ubuntu based prerequisites installation

sudo apt install -y python3 python3-pip git curl

Red Hat based prerequisites installation

sudo dnf install -y python3 python3-pip git curl

Arch based prerequisites installation

sudo pacman -Qi python3 python3-pip git curl

๐Ÿ’ฟ Installation

๐Ÿ Python

[!WARNING] If you're using Windows OS, make sure you have the Visual Studio Build Tools installed, otherwise install them with a command line: winget install -e --id Microsoft.VisualStudio.BuildTools

To install with pip:

# Install psp-scaffold package (deprecated)
pip install psp-scaffold
# Use user-space
pip install --user psp-scaffold
# Use external tools like pipx(https://pipx.pypa.io/stable/) and/or uv(https://docs.astral.sh/uv/) (they create virtual environments for you); upgrading is done via a specific subcommand
pipx install psp-scaffold && pipx upgrade-all
uv pip install psp-scaffold --upgrade
# Deactivate the externally managed file, temporarily or permanently
pip install psp-scaffold --break-system-packages || python3 -m pip config set global.break-system-packages true

Binary file

To install compiled file into your machine, download it:

Linux

For all users (required root access):

sudo -i
curl -L https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp_linux -o /usr/local/bin/psp
chmod +x /usr/local/bin/psp

For current user:

curl -L https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp_linux -o $HOME/.local/bin/psp
chmod +x $HOME/.local/bin/psp

MacOS

sudo su -
curl -L https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp_macos -o /usr/local/bin/psp
chmod +x /usr/local/bin/psp

Windows

For all users (required Administrator):

iwr -OutFile "C:\Windows\system32\psp.exe" "https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp_windows"

For current user:

mkdir "$($Env:USERPROFILE)\bin"
[System.Environment]::SetEnvironmentVariable("PATH", $Env:PATH + ";$($Env:USERPROFILE)\bin","USER")
iwr -OutFile "$($Env:USERPROFILE)\bin\psp.exe" "https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp_windows"

Packages

If you want to install OS package, follow instructions for your Operating System:

For Debian/Ubuntu:

curl -L https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp.deb -o psp.deb
sudo dpkg -i psp.deb

For Fedora/Mageia/OpenSuse:

sudo rpm -i https://github.com/MatteoGuadrini/psp/releases/download/v0.8.0/psp.rpm

Compile as your own

Instead, if you compile this project as own, follow this steps:

git clone https://github.com/MatteoGuadrini/psp.git
cd psp && cargo build --release && sudo cp -v target/release/psp /usr/local/bin/psp && chmod +x /usr/local/bin/psp

or build with script:

git clone https://github.com/MatteoGuadrini/psp.git
cd psp 
# Build
./build_psp.sh
# Copy binary
sudo cp -v target/release/psp /usr/local/bin/psp && chmod +x /usr/local/bin/psp
# Install rpm
sudo rpm -i /tmp/psp_rpm/psp.rpm
# Instal deb
sudo dpkg -i /tmp/psp_deb/psp.deb

Docker/Podman

If you want to use psp in a containerized environment, follow this:

# Clone...
git clone https://github.com/MatteoGuadrini/psp.git
# Build...
cd psp && docker build . -t psp:latest
# Run...
docker run -it --rm -v ~/python_projects:/psp:z localhost/psp:latest

You can use .env files and environment variables:

# .env file
docker run -it --rm -v ~/python_projects:/psp:z -v ~/python_projects/.env:/psp/.env localhost/psp:latest
# PSP_ environment variables
docker run -it --rm -v ~/python_projects:/psp:z -e "PSP_GIT=true" -e "PSP_PYVER=1.0.0" localhost/psp:latest

Next features

  • [x] windows operating system support
  • [x] Container support for psp program
  • [x] condaand uv support
  • [x] hatch, maturin and poetry build support
  • [x] updating/merging project
  • [x] Gitlab CI/CD and GitHub Actions
  • [x] templating files support
  • [x] templating custom files support
  • [ ] universal installation script
  • [ ] command line flags support
  • [ ] YAML configuration file

Open source

psp is an open source project. Any contribution, It's welcome.

A great thanks.

For donations, press this

For me

paypal

For Telethon

The Telethon Foundation is a non-profit organization recognized by the Ministry of University and Scientific and Technological Research. They were born in 1990 to respond to the appeal of patients suffering from rare diseases. Come today, we are organized to dare to listen to them and answers, every day of the year.

Adopt the future

Acknowledgments

Thanks to Jim Blandy, Jason Orendorff and Nora Tindall for writing the Programming Rust book that make up my Rust foundation.

Thanks to Tim McNamara for writing the Rust in Action book.

Thanks to Zed IDE and for license of RustRover offered by JetBrains.

Special thanks go to my wife, who understood the hours of absence for this development. Thanks to my children, for the daily inspiration they give me and to make me realize, that life must be simple.

Thanks, Rust Community!