Versioning Demo: Simple versioned Python package implementing useful features for versioned packages and documentation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Chaz Reid 7733e429e0
Bump version: 0.6.5 → 0.6.6
2 years ago
docs remove docs for exception that cannot be built 2 years ago
scripts fix 2 years ago
src Bump version: 0.6.5 → 0.6.6 2 years ago
.bumpversion.cfg Bump version: 0.6.5 → 0.6.6 2 years ago
.gitignore add init version 2 years ago
CHANGELOG update changelog for v0.5.0 2 years ago
CODEOWNERS add CODEOWNERS file 2 years ago
LICENSE add init version 2 years ago
MANIFEST.in fixup 2 years ago
Makefile fix up makefile 2 years ago
Readme.md Bump version: 0.6.5 → 0.6.6 2 years ago
VERSION Bump version: 0.6.5 → 0.6.6 2 years ago
common.mk check for bump2version 2 years ago
environment.example add example env file (necessary for release script) 2 years ago
mkdocs.yml clear up this now stupidly-complicated release process 2 years ago
requirements-dev.txt update pkg requirements 2 years ago
requirements.txt update pkg requirements 2 years ago
setup.py fix author 2 years ago

Readme.md

brad-pitt

version-0.6.6

Brad Pitt

This repository is a demonstration of a super simple Python package that implements some useful features for versioned packages:

  • mkdocs-material for markdown-based documentation
  • mkautodoc to automatically generate documentation of a Python API
  • bump2version for bumping versions in an automated way
  • mike to manage mkdocs documentation for multiple versions

This repo was created from audreyfeldroy/cookiecutter-pypackage.

The latest documentation can be obtained by appending /latest/ to the end of the usual GitHub Pages URL, or by adding /major.minor to the URL:

Quick Start

First, we recommend setting up a virtual environment:

python -m virtualenv vp && source vp/bin/activate

Now install the required dependencies, then install the package:

pip3 install -r requirements.txt
python3 setup.py build install

This will install the library into the virtual environment, so you should be able to import the provided classes (for example, Alpha) now:

$ python3

>>> from brad_pitt import Alpha

Installing the brad-pitt library also installs a command line tool called bp:

$ bp

You are about to use the bradd-pitt library
 - Using Alpha class
 - Using Beta class
 - Brad Pitt fact: During the filming of one of his most popular movies Seven, Brad Pitt broke his arm. Instead of delaying the filming due to this unfortunate event, the director had the injury written into the script.
Congrats! You successfully used the bradd-pitt library!

What is in this repo?

Main Directories and Files

  • src/ directory: contains the source code for the brad-pitt library. This is specifically named src/ (see setup.py, specifically the package_dir parameter) to avoid having the source code and the egg that is generated start with the same prefix, brad_pitt. (Mainly annoying from a tab completion perspective, but also redundancy.)

  • tests/ directory: contains a few minimal tests. Nothing fancy.

  • docs/ directory: contains the Markdown files for the mkdocs documentation.

  • .bumpversion.cfg: this configuration file is for bump2version (which has superseded bumpversion). This updates the version number in src/__init__.py and in Readme.md. By default it will create a commit and a git tag of the form v0.0.0.

  • Makefile: provides several convenience methods for performing tasks in the repo

  • Other files with all-capital names:

    • CHANGELOG - keeps track of what has changed in each version of the code
    • LICENSE - terms of use for this code
    • MANIFEST.in - manifest file listing data files that will be bundled with this package
    • VERSION - contains the version of this library (updated automatically, do not change)

Makefile

The makefile is used to perform various actions:

$ source environment

$ make help

clean                remove all build, test, and Python artifacts
clean-build          remove build artifacts
clean-pyc            remove Python file artifacts
clean-test           remove test and coverage artifacts
lint                 check style
docs                 generate mkdocs HTML documentation
serve-docs           serve the docs
deploy-docs          serve the docs
test                 run tests quickly with the default Python
test-all             run tests on every Python version with tox
build                build and install the package into the active Python's site-packages
dryrun_bump_major_version bump major version
bump_major_version   bump major version
dryrun_bump_minor_version bump major version
bump_minor_version   bump minor version
dryrun_bump_patch_version bump major version
bump_patch_version   bump patch version
dryrun_release       dry run: tag and cut a release
release              tag and cut a release
release_tag          only tag the release, do not cut it

Tests

Tests can be run with pytest:

pytest -vs tests/

What is the point of this example?

This example has three purposes:

  • The first purpose is to show (yet another) Python package example. There is no one way to create a Python package, everyone's needs are different, so implementing additional features or disabling other features can help others decide how to package their own Python code. The mkdocs-material documentation is not only versioned, but it looks as good as Brad Pitt's abs: https://charlesreid1-toy-factory.github.io/brad-pitt/latest

  • (The toy repositories in charlesreid1-toy-factory are also simple enough that they can only demonstrate a few best practices at a time.)

  • The second purpose is to demonstrate best practices for Python libraries that will have new versions released frequently, and show how to preserve documentation for prior versions alongside documentation for the current version.

  • The third purpose is to show how the principles of HubFlow can be implemented in practice, alongside tools like bump2version and mike.

What other goodies are shown off in this example?

This example also demonstrates:

  • How to bundle a JSON data file (or data directory) with your Python package, so that your library can have data files available alongside code files.

  • How to implement a minimal CLI tool with Click that can use the library (both the classes provided by the library, and the data bundled with the library).

What is not included in this example?

This example implements only the barest minimum CLI tool with Click.

This example does not implement any best practices for building a good CLI tool.