You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

versions.py 322B

1234567891011121314
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. """
  4. Versions for Python packages.
  5. See L{incremental}.
  6. """
  7. from __future__ import division, absolute_import
  8. from incremental import IncomparableVersions, Version, getVersionString
  9. __all__ = ["Version", "getVersionString", "IncomparableVersions"]