-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
72 lines (61 loc) · 2.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Originally contributed by Lorne McIntosh.
# Modified by Eric Xu
# Further modification by random internet people.
# You will probably have to edit this file in unpredictable ways
# if you want pyipopt to work for you, sorry.
# When I installed Ipopt from source, I used the
# --prefix=/usr/local
# option, so this is where I want pyipopt to look for my ipopt installation.
# I only installed from source because the ipopt packaging
# for my linux distribution was buggy,
# so by the time you read this the bugs have probably been fixed
# and you will want to specify a different directory here.
IPOPT_DIR = '/usr/local/'
import os
from distutils.core import setup
from distutils.extension import Extension
# NumPy is much easier to install than pyipopt,
# and is a pyipopt dependency, so require it here.
# We need it to tell us where the numpy header files are.
import numpy
numpy_include = numpy.get_include()
# I personally do not need support for lib64 but I'm keeping it in the code.
def get_ipopt_lib():
for lib_suffix in ('lib', 'lib64'):
d = os.path.join(IPOPT_DIR, lib_suffix)
if os.path.isdir(d):
return d
IPOPT_LIB = get_ipopt_lib()
if IPOPT_LIB is None:
raise Exception('failed to find ipopt lib')
IPOPT_INC = os.path.join(IPOPT_DIR, 'include/coin/')
FILES = ['src/callback.c', 'src/pyipoptcoremodule.c']
# The extra_link_args is commented out here;
# that line was causing my pyipopt install to not work.
# Also I am using coinmumps instead of coinhsl.
pyipopt_extension = Extension(
'pyipoptcore',
FILES,
#extra_link_args=['-Wl,--rpath','-Wl,'+ IPOPT_LIB],
library_dirs=[IPOPT_LIB],
libraries=[
'ipopt', 'coinblas',
#'coinhsl',
'coinmumps',
'coinmetis',
'coinlapack','dl','m',
],
include_dirs=[numpy_include, IPOPT_INC],
)
setup(
name="pyipopt",
version="0.8",
description="An IPOPT connector for Python",
author="Eric Xu",
author_email="[email protected]",
url="https://github.com/xuy/pyipopt",
packages=['pyipopt'],
package_dir={'pyipopt' : 'pyipoptpackage'},
ext_package='pyipopt',
ext_modules=[pyipopt_extension],
)