Skip to main content

Slap is a command-line utility for developing Python applications.

Project description

slap

Slap is a command-line tool for developing Python projects that provides a common interface for many tasks independent of the build system you use (currently supporting Setuptools via Pyproject, Poetry and Flit). It makes it easier to manage monorepositories of multiple projects which may even have inter-dependencies.

Developer's note: I personally use Poetry as the build system for some of its features, in particular because of its support for semantic version selectors which are not supported by Setuptools or Flit; but never actually use the Poetry CLI because I too often run into issues with it's dependency resolution and installation mechanism as well as its implicitly created virtual environments.

Slap provides a variety of features, including but not limited to

  • Sanity check your project configuration
  • Install your project and it's dependencies via Pip (in the right order in case of a monorepository)
  • Symlink your project (using Flit's symlinking function internally, independent of your actual build system; Poetry does not support editable installs so this is really convenient)
  • Build and publish your project (and all its individual packages in case of a monorepository) to Pypi using Twine
  • Release new versions (automatically update version numbers in code, create a Git tag and push)
  • Run tests configured in your Pyproject config under [tool.slap.test]
  • Manage local (~/.venvs) and global (~/.local/venvs) virtual environments (backed by Python's venv module)
  • Manage structured changelogs (TOML) via the CLI; easily inject PR URLs into changelog entries in pull requests via CI

Installation

It is recommended to install Slap via Pipx, but you can also install it with Pip directly.

$ pipx install slap-cli

Note: Currently, Slap relies on an alpha version of poetry-core (^1.1.0a6). If you install it into the same environment as Poetry itself, you may also need to use an alpha version of Poetry (e.g. 1.2.0a2).

Usage examples

Bootstrap a (opinionated) Poetry project using Slap.

$ slap init --name my.pkg
write my-pkg/pyproject.toml
write my-pkg/LICENSE
write my-pkg/readme.md
write my-pkg/.gitignore
write my-pkg/src/my/pkg/__init__.py
write my-pkg/test/test_import.py
write my-pkg/src/my/pkg/py.typed

Sanity check your project configuration

$ slap check
Checks for project slap-cli

  changelog:validate           OK             — All 74 changelogs are valid.
  general:packages             OK             — Detected /home/niklas/git/slap/src/slap
  general:typed                OK             — py.typed exists as expected
  poetry:classifiers           OK             — All classifiers are valid.
  poetry:license               OK             — License "MIT" is a valid SPDX identifier.
  poetry:readme                OK             — Poetry readme is configured correctly (path: readme.md)
  poetry:urls                  RECOMMENDATION — Please configure the following URLs: "Bug Tracker"
  release:source-code-version  OK             — Found __version__ in slap

Install and link your project (by default, the command protects you from accidentally installing the project; you can pass --no-venv-check to skip this safeguard).

$ slap install --link

Validate the version numbers in your project and release a new version.

$ slap release --validate
versions are ok
  pyproject.toml:          1.2.4 # version = "1.2.4"
  src/slap/__init__.py:    1.2.4 # __version__ = '1.2.4'
$ slap release --tag --push minor
bumping 3 version references to 1.3.0
  pyproject.toml:          1.2.4 → 1.3.0 # version = "1.2.4"
  src/slap/__init__.py:    1.2.4 → 1.3.0 # __version__ = '1.2.4'

releasing changelog
  .changelog/_unreleased.toml → .changelog/1.3.0.toml

tagging 1.3.0

pushing develop, 1.3.0 to origin

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

slap-cli-1.3.5.tar.gz (59.0 kB view details)

Uploaded Source

Built Distribution

slap_cli-1.3.5-py3-none-any.whl (75.5 kB view details)

Uploaded Python 3

File details

Details for the file slap-cli-1.3.5.tar.gz.

File metadata

  • Download URL: slap-cli-1.3.5.tar.gz
  • Upload date:
  • Size: 59.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for slap-cli-1.3.5.tar.gz
Algorithm Hash digest
SHA256 d3972984d815f9f83fcacb9208f0500045b2857d351489b694eb7bc62a524ac4
MD5 12d829db1e32d976a3c3200ff22a9dd3
BLAKE2b-256 9f7f8fc8c65639e94ee7e251e5e814e82466f51ba82fc5519c4aba69437cc90f

See more details on using hashes here.

File details

Details for the file slap_cli-1.3.5-py3-none-any.whl.

File metadata

  • Download URL: slap_cli-1.3.5-py3-none-any.whl
  • Upload date:
  • Size: 75.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for slap_cli-1.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 cb65e4ce866fb84b7198a065aea674af8a9276428047cf47d91af411471de700
MD5 1a7b9acd7074716d0705f68c71f61318
BLAKE2b-256 358fadbaabfde62524810d565be412d52a84f65137b4c8580b34fd893c79abd4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page