Added the "VERSION" constant to the "flask_digest_auth" module for the package version, and revised "pyproject.toml" and "conf.py" to read the version from it.

This commit is contained in:
2023-04-23 22:14:33 +08:00
parent 769ca7dddd
commit cedff68247
3 changed files with 9 additions and 2 deletions

View File

@ -21,3 +21,6 @@
from flask_digest_auth.algo import make_password_hash, calc_response
from flask_digest_auth.auth import DigestAuth
from flask_digest_auth.test import Client
VERSION: str = "0.5.0"
"""The package version."""