Python Package Skeleton Template

CI Codecov Maintainability Code Climate technical debt Read the Docs

Summary

This repository is a skeleton template for a Python application/library compliant with the latest team-development and software deployment practices within a continuous integration (CI) framework. You can use this repository as a source of information and a resource to study CI. Also, you can use this repository as a direct template for your repositories.

Note that this repository reflects the setup I like the most and that covers the CI needs for my Python projects, which include:

  • A robust Python library/application file hierarchy with packages, modules, clients, and documentation:
    • detailed, yet simple, setup.py

    • retrievable README and CHANGELOG

    • documentation deployed in ReadTheDocs

    • the unusual adoption of the src directory layer (love it)

    • examples of packages and modules hierarchy

    • examples of Python command-line interfaces

  • A unique testing framework for developers with tox and pytest
    • guarantees tests are reproducible for all developers

    • ensures same lint rules are always applied (local and remotely)

    • ensures all desired Python versions are covered

    • adopts hypothesis

  • Fully automated continuous integration services with GitHub Actions
    • automatic testing on Linux, MacOS, and Windows

    • automatic testing simulated upon deployment with tox

    • test coverage report to Codecov

    • automated version bump with bump2version, git tagging, and Python packaging to PyPI on Pull Request merge

Motivation

I developed this repository to understand how to implement the best practices for team-based development and automatic deployment of a scientific software written in Python. Nonetheless, I believe the strategy reviewed here can be applied to most general-purpose Python libraries.

This repository does not intend to be a cookiecutter-like repository. There are very well documented cookiecutters, even for scientific software, if you are looking for one of those. However, when I started developing Python libraries, I decided that blindly using a cookiecutter would not provide me the learning insights from configuring CI services because I would miss the details of what was actually being implemented. Hence, assembling this template from scratch as a full working repository was my best approach to obtain a useful understanding of CI. Now, this repository serves as a reference guide for all my projects and hopefully will serve you, too. I keep constantly updating this repository, expect one to two updates/reviews per year.

Acknowledgments

I want to acknowledge ionel discussions about Packaging a python library. They are a pillar in my understanding and decisions on this matter, and I really recommend reading his blog post and references herein.

I configured the CI pipeline to my needs by taking bits and pieces from many places. Kudos to python-nameless and cookiecutter-pylibrary; two primary sources of information for the python-project-skeleton repository, especially in the first versions using Travis and Appveyor.

When migrating to GitHub Actions, I based my choices on the version bump and deploying workflows @JoaoRodrigues assembled for pdb-tools; on the tox-gh-actions package; and on structlog. Implementation details have evolved with newest versions.

I refer to other important sources of information as comments in the specific files. Thanks, everyone, for keeping open discussions on internet.

How to use this repository

The documentation pages explain how to use this template for your projects and the implementation details adopted here. The documentation pages also serve to demonstrate how to compile documentation with Sphinx and deploy it online with ReadTheDocs.

Issues and Discussions

As usual for any GitHub-based project, raise an issue if you find any bug or want to suggest an improvement, or open a discussion if you want to discuss or chat :wink:

Projects using this skeleton

Below, a list of the projects using this repository as template or as base for their CI implementations:

If you use this repository as a reference for your works, let me know, so I list your work above, as well.

Version

v0.11.3