Project: verspec

Flexible version handling

Project Details

Latest version
0.1.0
Home Page
https://github.com/jimporter/verspec
PyPI Page
https://pypi.org/project/verspec/

Project Popularity

PageRank
0.001641763898703633
Number of downloads
88090

verspec

verspec is a Python library for handling software versions and specifiers, adapted from the packaging package.

An Example

from verspec import loose, python

v1 = loose.Version('1.0')
s1 = loose.SpecifierSet('~=1.0')
assert v1 in s1

v2 = python.Version('1.0')
s2 = python.SpecifierSet('~=1.0')
assert v2 in s2

Documentation

Forthcoming! (Sorry about that...)

Credits

The real credit for this package goes to the Python Packaging Authority.

License

This project is dual-licensed under the BSD and Apache licenses.