Skip to content
Snippets Groups Projects
Commit c81308d3 authored by Andreas Dedner's avatar Andreas Dedner
Browse files

minor fixes

parent f1de796a
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ add_subdirectory(dune) ...@@ -28,6 +28,7 @@ add_subdirectory(dune)
add_subdirectory(doc) add_subdirectory(doc)
add_subdirectory(lib) add_subdirectory(lib)
add_subdirectory(python) add_subdirectory(python)
dune_python_install_package(PATH python)
# finalize the dune project, e.g. generating config.h etc. # finalize the dune project, e.g. generating config.h etc.
finalize_dune_project(GENERATE_CONFIG_H_CMAKE) finalize_dune_project(GENERATE_CONFIG_H_CMAKE)
add_subdirectory(dune)
configure_file(setup.py.in setup.py)
add_python_targets(istl add_python_targets(istl
__init__ __init__
) )
dune_add_pybind11_module(NAME _istl CMAKE_GUARD dune-istl_FOUND) dune_add_pybind11_module(NAME _istl)
set_property(TARGET _istl PROPERTY LINK_LIBRARIES dunecommon)
from setuptools import setup, find_packages
setup(name="dune.istl",
namespace_packages=['dune'],
description="Python lib for dune: dune-alugrid library",
version="${DUNE_PYTHON_VERSION}",
author="Robert Kloefkorn, Martin Alkaemper, Andreas Dedner and Martin Nolte",
packages = find_packages(),
zip_safe = 0,
package_data = {'': ['*.so']}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment