-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated repo to include _VERSION and adjustments
- Loading branch information
1 parent
1908e9f
commit c60acb8
Showing
3 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = '0.0.5' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
import re | ||
from setuptools import setup, find_packages | ||
|
||
|
||
VERSION = '0.0.4' | ||
from biosimulator_processes._VERSION import __version__ | ||
|
||
|
||
with open("README.md", "r") as readme: | ||
|
@@ -19,7 +17,7 @@ | |
|
||
setup( | ||
name="biosimulator-processes", | ||
version=VERSION, | ||
version=__version__, | ||
author="Ryan Spangler, Eran Agmon, Alex Patrie", | ||
author_email="[email protected], [email protected], [email protected]", | ||
description="", | ||
|