1 Star 0 Fork 0

AlfieDiCaprio/PySCIPOpt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 3.41 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, Extension
import os, platform, sys, re
# look for environment variable that specifies path to SCIP
scipoptdir = os.environ.get('SCIPOPTDIR', '').strip('"')
extra_compile_args = []
extra_link_args = []
# determine include directory
if os.path.exists(os.path.join(scipoptdir, 'src')):
# SCIP seems to be installed in place
includedir = os.path.abspath(os.path.join(scipoptdir, 'src'))
else:
# assume that SCIP is installed on the system
includedir = os.path.abspath(os.path.join(scipoptdir, 'include'))
print('Using include path <%s>.' % includedir)
# determine library
if os.path.exists(os.path.join(scipoptdir, 'lib/shared/libscipsolver.so')):
# SCIP seems to be created with make
libdir = os.path.abspath(os.path.join(scipoptdir, 'lib/shared'))
libname = 'scipsolver'
extra_compile_args.append('-DNO_CONFIG_HEADER')
else:
# assume that SCIP is installed on the system
libdir = os.path.abspath(os.path.join(scipoptdir, 'lib'))
libname = 'scip'
if platform.system() in ['Windows']:
libname = 'libscip'
print('Using SCIP library <%s> at <%s>.' % (libname,libdir))
# set runtime libraries
if platform.system() in ['Linux', 'Darwin']:
extra_link_args.append('-Wl,-rpath,'+libdir)
# enable debug mode if requested
if "--debug" in sys.argv:
extra_compile_args.append('-UNDEBUG')
sys.argv.remove("--debug")
cythonize = True
packagedir = os.path.join('src', 'pyscipopt')
with open(os.path.join(packagedir, '__init__.py'), 'r') as initfile:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
initfile.read(), re.MULTILINE).group(1)
try:
from Cython.Build import cythonize
except ImportError:
if not os.path.exists(os.path.join(packagedir, 'scip.c')):
print('Cython is required')
quit(1)
cythonize = False
if not os.path.exists(os.path.join(packagedir, 'scip.pyx')):
cythonize = False
ext = '.pyx' if cythonize else '.c'
extensions = [Extension('pyscipopt.scip', [os.path.join(packagedir, 'scip'+ext)],
include_dirs=[includedir],
library_dirs=[libdir],
libraries=[libname],
extra_compile_args = extra_compile_args,
extra_link_args=extra_link_args
)]
if cythonize:
extensions = cythonize(extensions, compiler_directives = {'language_level': 3})
# extensions = cythonize(extensions, compiler_directives={'linetrace': True})
with open('README.md') as f:
long_description = f.read()
setup(
name = 'PySCIPOpt',
version = version,
description = 'Python interface and modeling environment for SCIP',
long_description = long_description,
long_description_content_type='text/markdown',
url = 'https://github.com/SCIP-Interfaces/PySCIPOpt',
author = 'Zuse Institute Berlin',
author_email = 'scip@zib.de',
license = 'MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Cython',
'Topic :: Scientific/Engineering :: Mathematics'],
ext_modules = extensions,
packages = ['pyscipopt'],
package_dir = {'pyscipopt': packagedir},
package_data = {'pyscipopt': ['scip.pyx', 'scip.pxd', '*.pxi']}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/joimy-dicaprio/PySCIPOpt.git
git@gitee.com:joimy-dicaprio/PySCIPOpt.git
joimy-dicaprio
PySCIPOpt
PySCIPOpt
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385