Skip to main content

dev-setup

A Python-based CLI for managing your Linux development environment. Install, remove, and track developer tools from a single command — with an interactive picker, a guided wizard for adding custom packages, and a consistent Rich terminal UI.


Prerequisites

Requirement Notes
OS Ubuntu 20.04+ or Debian 11+ (amd64)
Python 3.11 or later
curl Used by script-based installers (Docker, NVM, uv, etc.)
sudo Required for tools that write to system paths (/usr/local/bin, apt packages)
ca-certificates For HTTPS downloads — present on most systems by default

These are available on any standard Ubuntu/Debian install. On a fresh minimal image, run:

sudo apt-get install -y python3 python3-pip curl ca-certificates sudo

Optional — only needed when using specific install types:

Requirement When
git git-type custom packages (dev-setup add → git)
node / npm npm-type custom packages
uv Running from source via ./dev-setup (auto-installed if missing)

Installation

From PyPI (recommended)

The simplest install — no git clone required, Python 3.11+ is the only prerequisite:

# pipx gives the tool its own isolated environment (preferred)
pipx install dev-setup

# or plain pip
pip install dev-setup

After install, dev-setup is available as a command. Run dev-setup --help to verify.

From source (development)

git clone <repo-url> ~/dev-setup-py
cd ~/dev-setup-py
bash install.sh   # installs from PyPI via pipx or pip

Or to run directly from the cloned repo without installing:

./dev-setup list   # creates a .venv on first run, then stays fast

The ./dev-setup bash script requires Python 3.11+ and creates a local .venv automatically. On Debian/Ubuntu, if python3-venv is not installed, it falls back to uv venv if uv is available.

For editable development installs:

pip install -e .
dev-setup list

How it works

When installed from PyPI (via pip or pipx), the dev-setup command is a standard Python entry point — Python is the only runtime dependency. The [project.scripts] entry in pyproject.toml maps dev-setup directly to dev_setup.__main__:main.

The bash ./dev-setup script in the repo is a convenience runner for the git-clone workflow. It creates a .venv using python3 -m venv (falling back to uv venv on systems where python3-venv is a separate package) and installs the project in editable mode on first run.


Commands

list

Show all available packages with their install status, type, version, and help command.

dev-setup list                    # all packages
dev-setup list core               # core category only
dev-setup list tools              # tools category only
dev-setup list custom             # custom/user-added packages only
dev-setup list --installed        # only installed packages
dev-setup list --available        # only packages not yet installed

Output columns: status (✔/✘), package key, description, install type, version (if installed), help command.


install

Install one or more packages by key, or launch an interactive multi-select picker.

dev-setup install docker nvm      # install specific packages
dev-setup install                 # interactive picker (Space to toggle, Enter to confirm)

The interactive picker shows all available packages with their current install status and lets you select multiple at once before confirming.


remove

Uninstall an installed package. Always asks for confirmation before proceeding.

dev-setup remove htop
dev-setup uninstall htop          # alias

add

Guided wizard to register a new custom package. Supports six install types:

Type What it does
npm npm install -g <package>
uvx uv tool install <package>
apt sudo apt-get install -y <packages>
git git clone --depth=1 <url> with optional post-clone and pre-remove commands
script curl -fsSL <url> | sh — single-URL convenience script
bash Arbitrary multi-step bash — opens $EDITOR for install and remove scripts
dev-setup add

The wizard collects type-specific fields, then prompts for a help command (e.g. tool --help). Packages are saved into ~/.config/dev-setup/tools.yaml.

bash type

For tools like AWS CLI or saml2aws that require multiple download/extract/install steps, choose the bash type. The wizard opens $EDITOR twice — once for the install script and once for the optional remove script — with a #!/usr/bin/env bash / set -euo pipefail template pre-filled.

Example YAML for a bash-type custom package:

version: 1
tools:
  batcat:
    name: batcat
    description: Modern cat with syntax highlighting
    category: custom
    type: bash
    check_cmd: bat
    help_cmd: bat --help
    install_script: |
      set -euo pipefail
      VER=$(curl -s https://api.github.com/repos/sharkdp/bat/releases/latest | grep tag_name | cut -d'"' -f4 | sed 's/v//')
      curl -fsSL "https://github.com/sharkdp/bat/releases/download/v${VER}/bat_${VER}_amd64.deb" -o /tmp/bat.deb
      sudo dpkg -i /tmp/bat.deb
      rm /tmp/bat.deb
    remove_script: |
      sudo dpkg -r bat

delete

Remove a user catalog entry from the registry. Built-in-only packages cannot be deleted, but a user override of a built-in package can be deleted to restore the bundled definition.

dev-setup delete my-tool
dev-setup rm my-tool              # alias

Asks for confirmation, then removes the entry from ~/.config/dev-setup/tools.yaml.


catalog

Manage the user YAML catalog.

dev-setup catalog path                 # print ~/.config/dev-setup/tools.yaml
dev-setup catalog export               # write ./dev-setup-tools.yaml
dev-setup catalog export tools.yaml    # write effective catalog to a path
dev-setup catalog import tools.yaml    # validate and merge into user catalog
dev-setup catalog migrate              # migrate legacy JSON custom packages

The effective catalog is loaded in this order:

  1. Bundled tools from src/dev_setup/tools.yaml
  2. Legacy JSON migration from ~/.config/dev-setup/packages/*.json
  3. User overrides and additions from ~/.config/dev-setup/tools.yaml

When a user key matches a bundled key, the user definition overrides the bundled definition in place. New user keys are appended after bundled tools.


Built-in packages

Core

These are the foundation tools — install them on every machine.

Key Name Description Help
docker Docker Container runtime + docker compose plugin docker --help
nvm NVM + Node LTS Node Version Manager + latest Node LTS nvm help
uv uv Astral Python package and project manager uv --help

Tools

Optional utilities you may want on some machines.

Key Name Description Help
aws AWS CLI Amazon Web Services CLI v2 aws help
eza eza Modern ls replacement with git status, icons, and tree view eza --help
gh GitHub CLI GitHub's official CLI gh --help
htop htop Interactive process and resource monitor man htop
mkcert mkcert Zero-config local HTTPS certificates mkcert --help
ollama Ollama Run large language models locally ollama --help
php PHP 8.4 PHP 8.4 + common extensions via ondrej/php PPA php --help
pi Pi Coding Agent AI coding agent npm package pi --help
saml2aws saml2aws SAML → AWS STS credentials CLI (Versent) saml2aws --help
starship Starship Fast, cross-shell customizable prompt starship --help

Languages

Key Name Description Help
go Go Go programming language toolchain go help
java Java 21 (OpenJDK) OpenJDK 21 LTS - JDK and JRE java --help
ruby Ruby (rbenv) Ruby via rbenv version manager + ruby-build ruby --version

Custom packages

Custom packages live in ~/.config/dev-setup/tools.yaml. You can create them via dev-setup add, import them with dev-setup catalog import, or edit the YAML by hand.

YAML schema

version: 1
tools:
  my-tool:
    name: My Tool
    description: Does something useful
    category: custom
    type: bash
    check_cmd: my-tool
    help_cmd: my-tool --help
    docs_url: https://example.com/docs
    requires: []
    install_script: |
      set -euo pipefail
      curl -fsSL https://example.com/install.sh | sh
    remove_script: |
      rm -f "$HOME/.local/bin/my-tool"

YAML fields

Field Required Description
name yes Display name shown in list
description no Short description shown in list
category no custom (default), core, tools, or languages
type yes npm, pip, uvx, apt, git, script, or bash
check_cmd no Binary name or shell check used to detect install status
help_cmd no Command shown in list under the package entry
docs_url no URL opened by dev-setup docs <key>
requires no List of package keys that must already be installed
npm_name npm npm package name
pip_name pip PyPI package name
apt_packages apt Space-separated list of apt packages
git_url git Repository URL to clone
git_install_cmd git Bash command run inside the cloned repo after clone
git_remove_cmd git Bash command run inside the repo before deletion
script_url script URL passed to curl -fsSL … | sh
install_script bash Full bash script to run on install
remove_script bash Full bash script to run on remove

Unknown fields fail validation. requires defaults to ["nvm"] for npm tools and ["uv"] for pip/uvx tools unless explicitly set.

Examples

npm package:

version: 1
tools:
  prettier:
    name: Prettier
    description: Opinionated code formatter
    type: npm
    npm_name: prettier
    check_cmd: prettier
    help_cmd: prettier --help

uvx/PyPI package:

version: 1
tools:
  httpie:
    name: httpie
    description: Human-friendly HTTP client
    type: uvx
    pip_name: httpie
    check_cmd: http
    help_cmd: http --help

apt package:

version: 1
tools:
  ripgrep:
    name: ripgrep
    description: Fast recursive search tool
    type: apt
    apt_packages: ripgrep
    check_cmd: rg
    help_cmd: rg --help

Multi-step bash install:

version: 1
tools:
  saml2aws-custom:
    name: saml2aws (custom)
    description: SAML-to-AWS credential helper
    type: bash
    check_cmd: saml2aws
    help_cmd: saml2aws --help
    install_script: |
      set -euo pipefail
      VER=$(curl -s https://api.github.com/repos/Versent/saml2aws/releases/latest | grep tag_name | cut -d'v' -f2 | cut -d'"' -f1)
      curl -fsSL "https://github.com/Versent/saml2aws/releases/download/v${VER}/saml2aws_${VER}_linux_amd64.tar.gz" | tar -xz -C /tmp
      sudo mv /tmp/saml2aws /usr/local/bin/saml2aws
      sudo chmod +x /usr/local/bin/saml2aws
    remove_script: |
      sudo rm -f /usr/local/bin/saml2aws

Architecture

dev-setup-py/
├── dev-setup              # Bash entry point — bootstraps uv, then exec's Python
├── install.sh             # Symlinks dev-setup into ~/.local/bin
├── pyproject.toml         # Python project (hatchling, requires-python >=3.11)
└── src/
    └── dev_setup/
        ├── __main__.py    # python -m dev_setup entry point
        ├── cli.py         # Click group, command registration
        ├── base.py        # Tool ABC, patch_bashrc / remove_bashrc_block utilities
        ├── catalog.py     # YAML catalog loading, validation, migration, import/export
        ├── registry.py    # Loads bundled + user YAML into the live tool registry
        ├── generic.py     # GenericTool - handles all catalog install types
        ├── tools.yaml     # Bundled built-in tool catalog
        ├── ui.py          # Rich console helpers, questionary wrappers, styled prompts
        ├── commands/
        │   ├── list_cmd.py
        │   ├── install_cmd.py
        │   ├── remove_cmd.py
        │   ├── add_cmd.py
        │   ├── delete_cmd.py
        │   └── catalog_cmd.py

Adding a new built-in tool

Add an entry to src/dev_setup/tools.yaml. Built-ins use the same schema as user tools, with category set to core, tools, or languages.

mytool:
  name: My Tool
  description: Does something useful
  category: tools
  type: bash
  check_cmd: mytool
  help_cmd: mytool --help
  docs_url: https://example.com/docs
  install_script: |
    set -euo pipefail
    curl -fsSL https://example.com/install.sh | sh
  remove_script: |
    sudo rm -f /usr/local/bin/mytool

Key design decisions

  • uv owns Python provisioning. The bash wrapper only guarantees uv is present; Python version and virtualenv management is delegated entirely to uv run.
  • Catalogs are the source of truth. Bundled YAML loads first, legacy JSON is migrated, then user YAML overrides matching keys and appends new tools.
  • Tool execution is generic. The Python engine handles npm, uvx/pip, apt, git, script URLs, and bash scripts from catalog metadata.
  • Custom packages are plain YAML. Scripts are stored as strings and written to a temp file at install time, giving bash full parsing fidelity.
  • install() raises on failure. Tools raise RuntimeError or subprocess.CalledProcessError; command handlers catch and report them. No InstallResult enum to check.
  • Invalid catalogs fail visibly. Malformed YAML, unsupported versions, bad keys, unknown fields, and invalid requires values raise clear load errors.

Dependencies

Package Version Purpose
click ≥ 8.1 CLI command dispatch, --help generation, editor integration
PyYAML ≥ 6.0 Tool catalog parsing and writing
rich ≥ 13.0 Terminal UI — panels, tables, spinners, styled text
questionary ≥ 2.0 Interactive prompts — multi-select, confirm, text input

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dev_setup-1.8.1.tar.gz (65.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dev_setup-1.8.1-py3-none-any.whl (30.8 kB view details)

Uploaded Python 3

File details

Details for the file dev_setup-1.8.1.tar.gz.

File metadata

  • Download URL: dev_setup-1.8.1.tar.gz
  • Upload date:
  • Size: 65.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dev_setup-1.8.1.tar.gz
Algorithm Hash digest
SHA256 d7957493438a770f10ce1e83fa5a68d0115bc34a774563d052131150e64eb251
MD5 1d5eea757c511f74e53a2715c77cc581
BLAKE2b-256 6a8395c4065be76f8f05bfdef33a23057de72cca52cc0686793d50cebd415484

See more details on using hashes here.

Provenance

The following attestation bundles were made for dev_setup-1.8.1.tar.gz:

Publisher: publish.yml on thesawdawg/dev-setup-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dev_setup-1.8.1-py3-none-any.whl.

File metadata

  • Download URL: dev_setup-1.8.1-py3-none-any.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dev_setup-1.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bc85f1f7c4efd32a41d93ba8244be01f812562f986a86adf0a6e4c90268cd05a
MD5 58c870d2bfc43a37791c9ea029d215d4
BLAKE2b-256 54932e03e227ef427a2b9df4509bd770f5f8ab456c733e5fd12b831bd48a7ad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dev_setup-1.8.1-py3-none-any.whl:

Publisher: publish.yml on thesawdawg/dev-setup-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.13.0

2 files

1.12.0

2 files

1.11.0

2 files

1.10.0

2 files

1.9.1

2 files

1.9.0

2 files

1.8.2

2 files

This release

1.8.1 This release

2 files

1.8.0

2 files

1.7.1

2 files

1.7.0

2 files

1.6.0

2 files

1.5.0

2 files

1.4.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page