Skip to main content

No project description provided

Project description

travis pypi coverage

Incremental is a small library that versions your Python projects.

API documentation can be found here.

Quick Start

Add this to your setup.py‘s setup() call:

setup(
    use_incremental=True,
    setup_requires=['incremental'],
    install_requires=['incremental'], # along with any other install dependencies
    ...
}

Then in your project add a _version.py that contains:

from incremental import Version

__version__ = Version("widgetbox", 1, 2, 3)
__all__ = ["__version__"]

Then, so users of your project can find your version, in your project’s __init__.py add:

from ._version import __version__

Subsequent installations of your project will use incremental for versioning.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

incremental-16.9.1.tar.gz (15.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page