← Back to Journal

How to store your Python package metadata

Posted on 20 December 2016

A small, but full of snippets, post about how to store your package metadata cleanly.

Let’s define a simple layout.

All your metadata lives in __about__.py like that:

Expose all your metadata at package root.

This setup allow you to avoid editing your setup.py too frequently and keep it up to date easily.

Happy coding and don’t eat too much turkeys!