From 3bfb92c076a0539201887288e54297e8ca1313bb Mon Sep 17 00:00:00 2001 From: Kevin Dalton Date: Tue, 23 Jul 2024 09:09:46 -0400 Subject: [PATCH] don't hardcode version --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1ff47a1..9f04ba7 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,8 @@ def getVersionNumber(): version = vfile.read().strip() return version +__version__ = getVersionNumber() + PROJECT_URLS = { "Bug Tracker": "https://github.com/rs-station/abismal/issues", "Source Code": "https://github.com/rs-station/abismal", @@ -18,7 +20,7 @@ def getVersionNumber(): setup( name='abismal', - version='0.0.1', + version=__version__, author='Kevin M. Dalton', author_email='kevinmdalton@gmail.com', license="MIT",