Skip to content

Commit

Permalink
don't hardcode version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Dalton committed Jul 23, 2024
1 parent 3f8cd98 commit 3bfb92c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -18,7 +20,7 @@ def getVersionNumber():

setup(
name='abismal',
version='0.0.1',
version=__version__,
author='Kevin M. Dalton',
author_email='[email protected]',
license="MIT",
Expand Down

0 comments on commit 3bfb92c

Please sign in to comment.