Usage

Adding support for your project

Using versiontools is very easy. Just follow those two steps to do it.

Declare package version

Put this code your package’s __init__.py or in your main module:

__version__ = (1, 2, 3, 'final', 0)  # replace with your project version

Patch setup.py

Edit your setup.py to have code that looks like this:

setup(
    # Replace your_package as appropriate
    version = ":versiontools:your_package:",
    # ...
    setup_requires = [
        'versiontools >= 1.8',
    ],
)

The trick here is to use a magic value for version keyword. The format of that magic value is:

":versiontools:" - a magic string that versiontools matches
your_package     - name of your package or module to import
":"              - colon separating package from identifier
identifier       - Object to import from your_package.
                   Can be omitted if equal to __version__.

This will make versiontools use versiontools.format_version() on whatever your_package.__version__ contains. Since your __version__ is a tuple as described above you’ll get a correctly formatted version identifier.

This code will ensure that:

  1. Your package will use version tools
  2. Your package will correctly install via pip (for real this time)

Developing with versiontools

While you are working on the next version of your project you should make sure that releaselevel is set to "dev". This will (if you have proper vcs integration in place) allow you to get the most benefit.

Releases

Each time you make a release (with setup.py sdist or any bdist commands) make sure to change the releaselevel to something other than "dev". You can use the following strings:

  • "alpha"
  • "beta"
  • "candidate"
  • "final"

Table Of Contents

Previous topic

Installation

Next topic

Integration with version control systems

This Page