Metadata-Version: 1.0
Name: verify-version-spec
Version: 0.0.2
Summary: Verify that a version specification matches a version string.
Home-page: https://github.com/jkenlooper/verify_version_spec
Author: Jake Hickenlooper
Author-email: jake@weboftomorrow.com
License: UNKNOWN
Description: # verify_version_spec
        
        Verify that a version specification matches a version string.
        
        This is mainly used to check that a version returned from a command line
        program is within a version specification like: ">=0.9,<0.10".  It uses the
        [semantic_version](https://pypi.python.org/pypi/semantic_version/2.3.0) library
        which implements the [SemVer scheme](http://semver.org/).
        
        
        ## Usage
        
        To verify that the target version "1.2.3" is within the specification ">=1.2". ::
        
          $ verify_version_spec --spec=">=1.2" 1.2.3
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development :: Build Tools
