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",