You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
Python
13 lines
451 B
Python
from distutils.core import setup, Extension
|
|
nlopt_module = Extension('_nlopt',
|
|
sources=['nlopt-python.cpp'],
|
|
libraries=['libnlopt-0'],
|
|
)
|
|
setup (name = 'nlopt',
|
|
version = '2.2.1',
|
|
author = "Steven G. Johnson",
|
|
description = """NLopt nonlinear-optimization library""",
|
|
ext_modules = [nlopt_module],
|
|
py_modules = ["nlopt"],
|
|
)
|