Skip to content

Commit

Permalink
Use metadata version for __version__ (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
gawbul authored Nov 28, 2024
1 parent 3ecbae5 commit 5f1c94a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyensemblrest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import importlib.metadata

__author__ = "Steve Moss"
__copyright__ = "Copyright (C) 2013-2024, Steve Moss"
__credits__ = ["Steve Moss"]
__license__ = "GNU GPLv3"
__version__ = "0.0.0"
__version__: str = importlib.metadata.version("pyensemblrest")
__maintainer__ = "Steve Moss"
__email__ = "gawbul@gmail.com"
__status__ = "beta"
Expand Down

0 comments on commit 5f1c94a

Please sign in to comment.