mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
23 lines
642 B
Python
23 lines
642 B
Python
###
|
|
## setup.py
|
|
from distutils.core import *
|
|
|
|
# lang = 'c++'
|
|
|
|
obExtension = Extension('openbabel',
|
|
['openbabel_python.cpp'],
|
|
include_dirs=['../../src'],
|
|
library_dirs=['../../src'],
|
|
libraries=['openbabel']
|
|
)
|
|
|
|
setup(name='openbabel',
|
|
version='1.0.0',
|
|
description='Chemistry interface to Open Babel',
|
|
author='Geoff Hutchison',
|
|
author_email='openbabel-scripting@lists.sourceforge.net',
|
|
url='http://openbabel.sourceforge.net/',
|
|
py_modules=['openbabel'],
|
|
ext_modules=[obExtension])
|
|
###
|