get versioning working from git tags

This commit is contained in:
Andrew Herrington
2021-12-15 22:47:27 -06:00
parent 073a4ca2bb
commit fcbf8c1b47
5 changed files with 19 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
"""Py Healthchecks.Io."""
VERSION = "0.1" # noqa: E402
# set by poetry-dynamic-versioning
__version__ = "0.0.0" # noqa: E402
from .client import AsyncClient # noqa: F401, E402
from .client import Client # noqa: F401, E402
@@ -29,4 +30,5 @@ __all__ = [
"CheckStatuses",
"Integration",
"Badges",
"__version__",
]