__about__.py 815 B

12345678910111213141516171819202122232425262728293031323334353637
  1. """
  2. Metadata about semver.
  3. Contains information about semver's version, the implemented version
  4. of the semver specifictation, author, maintainers, and description.
  5. .. autodata:: __author__
  6. .. autodata:: __description__
  7. .. autodata:: __maintainer__
  8. .. autodata:: __version__
  9. .. autodata:: SEMVER_SPEC_VERSION
  10. """
  11. #: Semver version
  12. __version__ = "3.0.1"
  13. #: Original semver author
  14. __author__ = "Kostiantyn Rybnikov"
  15. #: Author's email address
  16. __author_email__ = "k-bx@k-bx.com"
  17. #: Current maintainer
  18. __maintainer__ = ["Sebastien Celles", "Tom Schraitle"]
  19. #: Maintainer's email address
  20. __maintainer_email__ = "s.celles@gmail.com"
  21. #: Short description about semver
  22. __description__ = "Python helper for Semantic Versioning (https://semver.org)"
  23. #: Supported semver specification
  24. SEMVER_SPEC_VERSION = "2.0.0"