mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
Rathann Mierzejewski to check for src/.libs directories. Prevents "chicken and egg" problem with what component is built first.
94 lines
3.8 KiB
Python
94 lines
3.8 KiB
Python
#!/usr/bin/env python
|
|
from distutils.core import *
|
|
import os,sys
|
|
|
|
about = """The Open Babel package provides a Python wrapper
|
|
to the Open Babel C++ chemistry library. Open Babel is a project
|
|
designed to pick up where Babel left off, as a cross-platform program
|
|
and library designed to interconvert between many file formats used in
|
|
molecular modeling, computational chemistry, and many related
|
|
areas. It provides a broad base of chemical functionality for custom
|
|
development.
|
|
"""
|
|
|
|
def find_likely_directory():
|
|
"""Find (guess!) where Open Babel is installed.
|
|
|
|
Order of precedence is:
|
|
$OPENBABEL_INSTALL > ../../src > /usr/local > /usr
|
|
"""
|
|
name = os.environ.get("OPENBABEL_INSTALL")
|
|
if name: # OPENBABEL_INSTALL is set
|
|
sys.stderr.write("INFO: Using the value of $OPENBABEL_INSTALL (%s)\n" % name)
|
|
if not os.path.isdir(name):
|
|
sys.stderr.write("ERROR: $OPENBABEL_INSTALL (%s) is not a directory\n" % name)
|
|
else:
|
|
return ([name+"/include/openbabel-2.0",name+"/include/openbabel-2.0/openbabel"],
|
|
[name+"/lib"])
|
|
|
|
else: # OPENBABEL_INSTALL is not set
|
|
sys.stderr.write("WARNING: Environment variable OPENBABEL_INSTALL is not set\n")
|
|
sys.stderr.write("INFO: Looking for library and include files in ../../src\n")
|
|
if os.path.isfile("../../src/atom.o"):
|
|
return ["../../include"],["../../src"]
|
|
else:
|
|
if os.path.isfile("../../src/atom.lo"):
|
|
return ["../../include"],["../../src/.libs"]
|
|
|
|
for dirname in ["/usr/local","/usr"]:
|
|
# Look for each of these directories in turn for the directory include/openbabel-2.0
|
|
# (This is version specific, so I may do as Andrew Dalke did for PyDaylight and use
|
|
# a regular expression to find the latest version of openbabel)
|
|
if os.path.isdir(dirname+"/include/openbabel-2.0"):
|
|
sys.stderr.write("INFO: Setting OPENBABEL_INSTALL to %s\n" % dirname)
|
|
return ([dirname+"/include/openbabel-2.0",dirname+"/include/openbabel-2.0"],
|
|
[dirname+"/lib"])
|
|
|
|
sys.stderr.write("ERROR: Cannot find Open Babel library directory\n")
|
|
return (None,None)
|
|
|
|
|
|
|
|
|
|
OBinclude,OBlibrary = find_likely_directory()
|
|
|
|
obExtension = Extension('_openbabel',
|
|
['openbabel_python.cpp'],
|
|
include_dirs=OBinclude,
|
|
library_dirs=OBlibrary,
|
|
libraries=['openbabel']
|
|
)
|
|
|
|
setup(name='openbabel',
|
|
version='1.2.0',
|
|
author='Geoff Hutchison',
|
|
author_email='openbabel-scripting@lists.sourceforge.net',
|
|
url='http://openbabel.sourceforge.net/',
|
|
license='http://www.gnu.org/copyleft/gpl.html',
|
|
py_modules=['openbabel','pybel'],
|
|
ext_modules=[obExtension],
|
|
description = 'openbabel: Python interface to the Open Babel chemistry library',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'Environment :: Other Environment',
|
|
'Intended Audience :: Education',
|
|
'Intended Audience :: Science/Research',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'Natural Language :: English',
|
|
'Operating System :: MacOS :: MacOS X',
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Operating System :: OS Independent',
|
|
'Operating System :: POSIX',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Operating System :: Unix',
|
|
'Programming Language :: C++',
|
|
'Programming Language :: Python',
|
|
'Topic :: Scientific/Engineering :: Bio-Informatics',
|
|
'Topic :: Scientific/Engineering :: Chemistry',
|
|
'Topic :: Software Development :: Libraries',
|
|
],
|
|
long_description = about,
|
|
)
|
|
|