Skip to content

Commit

Permalink
updated setup
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Aug 26, 2024
1 parent 5ff776c commit 3e245ee
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import sys
import os

from biosimulators_smoldyn import __version__


# set dirs
name = 'biosimulators_smoldyn'
Expand All @@ -24,6 +22,11 @@
r']\(([\w/.-]+)\)',
r'](https://github.com/biosimulators/Biosimulators_smoldyn/blob/main/\1)',
description2)


# get version
with open(os.path.join(dirname, 'biosimulators_smoldyn', '_VERSION'), 'r') as version_file:
__version__ = version_file.read().strip()


# install package
Expand Down

0 comments on commit 3e245ee

Please sign in to comment.