PyScaffold

4.6 · active · verified Thu Apr 16

PyScaffold is a template tool designed to quickly set up the scaffold of a Python project, following best practices and integrating with tools like setuptools_scm for version management, tox for testing, and pre-commit for quality control. It is currently at version 4.6 and typically releases minor or patch updates every few months, ensuring compatibility and incorporating improvements.

Common errors

Warnings

Install

Imports

Quickstart

Create a new project named 'my_new_project'. Navigate into the directory, install the project in editable mode with development and test dependencies, then run tests using tox.

putup my_new_project
cd my_new_project
pip install -e '.[dev,test]'
tox -e py

view raw JSON →