Skip to content

Commit

Permalink
modularize brd
Browse files Browse the repository at this point in the history
  • Loading branch information
malihass committed Jan 31, 2024
1 parent 5b52fbd commit 5b78d6a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions brd/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Bio reactor design"""
import os
from brd.version import __version__

BRD_DIR = os.path.dirname(os.path.realpath(__file__))
BRD_MESH_DIR = os.path.join(BRD_DIR, "meshing")
BRD_INV_DIR = os.path.join(UIPS_DIR, "inverse_modeling")
3 changes: 3 additions & 0 deletions brd/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Bio reactor design version"""

__version__ = "0.0.1"

0 comments on commit 5b78d6a

Please sign in to comment.