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
Branches
Tags
No related merge requests found
......@@ -2,7 +2,7 @@ import warnings
import sys
try:
from .molfile import _libpymolfile as libpymolfile
from .molfile import libpymolfile
except ImportError:
warnings.warn("libpymolfile package not available, pymolfile does not work without its library!")
......
......@@ -13,7 +13,7 @@ if sys.version_info > (3,):
long = int
try:
from .molfile import _libpymolfile as libpymolfile
from .molfile import libpymolfile
except ImportError:
warnings.warn("libpymolfile package not available, pymolfile does not work without its library!")
......
......@@ -213,7 +213,7 @@ largefile_macros = [
if __name__ == '__main__':
libpymolfile_module = Extension(
'pymolfile/molfile/_libpymolfile',
'pymolfile/molfile/libpymolfile',
sources=[
'pymolfile/molfile/libpymolfile.i' ,
'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