11 lines
315 B
Python
11 lines
315 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2012-2014 The python-semanticversion project
|
|
# This code is distributed under the two-clause BSD License.
|
|
|
|
|
|
__author__ = "Raphaël Barrois <raphael.barrois+semver@polytechnique.org>"
|
|
__version__ = '2.4.2'
|
|
|
|
|
|
from .base import compare, match, validate, Spec, SpecItem, Version
|