Skip to content

Commit

Permalink
Fix conda installation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaliki committed Sep 26, 2023
1 parent 595b96f commit 5696905
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model_angelo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"""


__version__ = "1.0.2"
__version__ = "1.0.3"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os
import sys

from setuptools import setup
from setuptools import setup, find_packages

sys.path.insert(0, f"{os.path.dirname(__file__)}/model_angelo")

Expand All @@ -23,6 +23,7 @@
],
},
package_data={'': ['utils/stereo_chemical_props.txt']},
packages=find_packages(),
version=model_angelo.__version__,
install_requires=[
"tqdm",
Expand Down

0 comments on commit 5696905

Please sign in to comment.