Skip to content

Commit

Permalink
Merge pull request #11
Browse files Browse the repository at this point in the history
dev
  • Loading branch information
bf777 authored Dec 22, 2021
2 parents 4dad7b3 + df9b6b0 commit c5df32b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion mesonet/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ def find_git_repo():
# Preferred (faster) option to find mesonet git repo is to set it as an environment variable
git_repo_base = ""
try:
git_repo_base = os.environ["MESONET_GIT"]
git_repo_base = os.getenv("MESONET_GIT")
print('MesoNet git repo found at {}, skipping directory check...'.format(git_repo_base))
except:
# If we can't find the environment variable, search for the mesonet git repository
# solution to find git repository on computer adapted from:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name='mesonet',
version='1.0.5.2',
version='1.0.5.3',
author="Brandon Forys",
author_email="brandon.forys@alumni.ubc.ca",
description="An automatic brain region identification and segmentation toolbox.",
Expand All @@ -20,7 +20,7 @@
url="https://github.com/bf777/mesonet",
install_requires=['imutils', 'scikit-image', 'scipy', 'numpy', 'keras==2.3.1', 'opencv-python',
'Pillow', 'deeplabcut', 'pandas', 'matplotlib', 'python-polylabel',
'imgaug', 'voxelmorph', 'neurite', 'osfclient', 'tables'],
'imgaug', 'voxelmorph', 'neurite', 'osfclient', 'h5py', 'tables'],
packages=['mesonet', ],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit c5df32b

Please # to comment.