import glob import os.path import os import sys import pathlib import sysconfig import importlib.metadata from skbuild import setup import skbuild.cmaker from subprocess import check_output setup_requires = ['pybind11-stubgen>=2.5', 'netgen-occt-devel'] pyprefix = pathlib.Path(sys.prefix).as_posix() def find_occt_dir(): for f in importlib.metadata.files("netgen-occt-devel"): if f.match("OpenCASCADEConfig.cmake"): return f.locate().parent.resolve().absolute().as_posix() def install_filter(cmake_manifest): print(cmake_manifest) return cmake_manifest def _patched_parse_manifests(self): paths = \ glob.glob(os.path.join(skbuild.cmaker.CMAKE_BUILD_DIR(), "netgen", "install_manifest*.txt")) try: return [self._parse_manifest(path) for path in paths][0] except IndexError: return [] # we are using the netgen superbuild (to download and build some dependencies) # patch the parse_manifests function to point to the actual netgen cmake project within the superbuild skbuild.cmaker.CMaker._parse_manifests = _patched_parse_manifests def is_dev_build(): if 'NG_NO_DEV_PIP_VERSION' in os.environ: return False if 'CI_COMMIT_REF_NAME' in os.environ and os.environ['CI_COMMIT_REF_NAME'] == 'release': return False return True git_version = check_output([sys.executable, os.path.join('tests', 'utils.py'), '--get-git-version']).decode('utf-8').strip() version = check_output([sys.executable, os.path.join('tests', 'utils.py'), '--get-version']).decode('utf-8').strip() py_install_dir = os.path.relpath(sysconfig.get_path('platlib'), sysconfig.get_path('data')).replace('\\','/') name = "netgen-mesher" arch = None cmake_args = [ f'-DNETGEN_VERSION_GIT={git_version}', f'-DNETGEN_VERSION_PYTHON={version}', f'-DOpenCascade_DIR={find_occt_dir()}', ] if 'NETGEN_ARCH' in os.environ and os.environ['NETGEN_ARCH'] == 'avx2': # build for avx2 architecture if 'darwin' in sys.platform: flag = "'-Xarch_x86_64;-march=core-avx2'" elif 'win' in sys.platform: flag = '/arch:AVX2' else: flag = '-march=core-avx2' cmake_args += [f'-DNG_COMPILE_FLAGS={flag}'] if 'NETGEN_CCACHE' in os.environ: cmake_args += [f'-DUSE_CCACHE=ON'] packages = ['netgen', 'pyngcore'] have_mpi = False if 'darwin' in sys.platform: cmake_args += [ '-DNG_INSTALL_DIR_LIB=netgen', '-DNG_INSTALL_DIR_PYTHON=.', '-DNG_INSTALL_DIR_BIN=bin', '-DNG_INSTALL_DIR_CMAKE=netgen/cmake', '-DNG_INSTALL_DIR_INCLUDE=netgen/include', '-DNG_INSTALL_DIR_RES=share', ] if os.path.exists('/usr/local/include/mpi.h'): have_mpi = True cmake_args += [ '-DOPENMPI_INCLUDE_DIR=/usr/local/include', ] elif 'win' in sys.platform: cmake_args += [ '-A Win64', '-DNG_INSTALL_DIR_BIN=netgen', '-DNG_INSTALL_DIR_PYTHON=.', '-DNG_INSTALL_DIR_LIB=netgen/lib', '-DNG_INSTALL_DIR_CMAKE=netgen/cmake', '-DNG_INSTALL_DIR_INCLUDE=netgen/include', ] py_libdir = pathlib.Path(sys.prefix) / 'Library' lib_file = py_libdir / 'lib' / 'impi.lib' include_dir = py_libdir / 'include' if lib_file.exists(): have_mpi = True cmake_args += [ f'-DINTEL_MPI_INCLUDE_DIR={include_dir.as_posix()}', f'-DINTEL_MPI_LIBRARY={lib_file.as_posix()}', ] elif 'linux' in sys.platform: name_dir = name.replace('-','_') cmake_args += [ f'-DNG_INSTALL_DIR_LIB={py_install_dir}/{name_dir}.libs', '-DNG_INSTALL_DIR_BIN=bin', '-DNG_INSTALL_DIR_INCLUDE=include/netgen', '-DTCL_INCLUDE_PATH=/usr/include', '-DTK_INCLUDE_PATH=/usr/include', ] mpich_include = '/opt/mpich/include' openmpi_include = '/opt/openmpi/include' if os.path.exists(mpich_include+'/mpi.h'): have_mpi = True cmake_args += [ f'-DMPICH_INCLUDE_DIR={mpich_include}', ] if os.path.exists(openmpi_include+'/mpi.h'): have_mpi = True cmake_args += [ f'-DOPENMPI_INCLUDE_DIR={openmpi_include}', ] packages = [] if have_mpi: cmake_args += [ '-DUSE_MPI=ON', '-DUSE_MPI_WRAPPER=ON', ] cmake_args += [ '-DUSE_SUPERBUILD:BOOL=ON', '-DUSE_CCACHE:BOOL=ON', '-DUSE_GUI=ON', '-DUSE_NATIVE_ARCH=OFF', '-DBUILD_ZLIB=ON', '-DZLIB_USE_STATIC_LIBS=ON', '-DBUILD_OCC=OFF', '-DUSE_OCC=ON', '-DBUILD_FOR_CONDA=ON', f'-DNETGEN_PYTHON_PACKAGE_NAME={name}', '-DBUILD_STUB_FILES=ON', ] cmake_args += [f'-DCMAKE_PREFIX_PATH={pyprefix}', f'-DPython3_ROOT_DIR={pyprefix}'] setup( name=name, version=version, description="Netgen", author='The Netgen team', license="LGPL2.1", packages=packages, #package_dir={'netgen': 'python'}, install_requires=[f"netgen-occt=={importlib.metadata.version('netgen-occt-devel')}"], tests_require=['pytest'], #include_package_data=True, cmake_process_manifest_hook=install_filter, cmake_args = cmake_args, setup_requires=setup_requires, entry_points={ 'console_scripts': [ 'netgen = netgen.__main__:main', ], }, )