Skip to content
Snippets Groups Projects
Commit 3ae2ac9b authored by Berk Onat's avatar Berk Onat
Browse files

Minor change in the install

parent 7f3dd70b
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ import warnings ...@@ -2,7 +2,7 @@ import warnings
import sys import sys
try: try:
from .molfile import _libpymolfile as libpymolfile from .molfile import libpymolfile
except ImportError: except ImportError:
warnings.warn("libpymolfile package not available, pymolfile does not work without its library!") warnings.warn("libpymolfile package not available, pymolfile does not work without its library!")
......
...@@ -13,7 +13,7 @@ if sys.version_info > (3,): ...@@ -13,7 +13,7 @@ if sys.version_info > (3,):
long = int long = int
try: try:
from .molfile import _libpymolfile as libpymolfile from .molfile import libpymolfile
except ImportError: except ImportError:
warnings.warn("libpymolfile package not available, pymolfile does not work without its library!") warnings.warn("libpymolfile package not available, pymolfile does not work without its library!")
......
...@@ -213,7 +213,7 @@ largefile_macros = [ ...@@ -213,7 +213,7 @@ largefile_macros = [
if __name__ == '__main__': if __name__ == '__main__':
libpymolfile_module = Extension( libpymolfile_module = Extension(
'pymolfile/molfile/_libpymolfile', 'pymolfile/molfile/libpymolfile',
sources=[ sources=[
'pymolfile/molfile/libpymolfile.i' , 'pymolfile/molfile/libpymolfile.i' ,
'pymolfile/molfile/pymolfile.cxx', 'pymolfile/molfile/pymolfile.cxx',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment