Skip to content
Snippets Groups Projects
Commit dee3f28c authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Use new module with all python dependencies as submodules

based on dune-python!
parents
No related branches found
No related tags found
No related merge requests found
*~
[submodule "python/islpy"]
path = python/islpy
url = https://github.com/inducer/islpy.git
[submodule "python/cgen"]
path = python/cgen
url = https://github.com/inducer/cgen.git
[submodule "python/loopy"]
path = python/loopy
url = https://github.com/inducer/loopy.git
[submodule "python/ufl"]
path = python/ufl
url = https://bitbucket.org/fenics-project/ufl.git
cmake_minimum_required(VERSION 2.8.12)
project(dune-perftool CXX)
if(NOT (dune-common_DIR OR dune-common_ROOT OR
"${CMAKE_PREFIX_PATH}" MATCHES ".*dune-common.*"))
string(REPLACE ${CMAKE_PROJECT_NAME} dune-common dune-common_DIR
${PROJECT_BINARY_DIR})
endif()
#find dune-common and set the module path
find_package(dune-common REQUIRED)
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/modules"
${dune-common_MODULE_PATH})
#include the dune macros
include(DuneMacros)
# start a dune project with information from dune.module
dune_project()
dune_enable_all_packages()
add_subdirectory(dune/perftool)
add_subdirectory(cmake/modules)
# Make sure that git submodules are correctly initialized
execute_process(COMMAND git submodule update --init --recursive
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
# Add the python subdirectory to systematically install
# the python dependencies there.
add_subdirectory(python)
# finalize the dune project, e.g. generating config.h etc.
finalize_dune_project(GENERATE_CONFIG_H_CMAKE)
install(FILES DunePerftoolMacros.cmake
DESTINATION ${DUNE_INSTALL_MODULEDIR})
# File for module specific CMake tests.
/* begin dune-perftool
put the definitions for config.h specific to
your project here. Everything above will be
overwritten
*/
/* begin private */
/* Name of package */
#define PACKAGE "@DUNE_MOD_NAME@"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "@DUNE_MAINTAINER@"
/* Define to the full name of this package. */
#define PACKAGE_NAME "@DUNE_MOD_NAME@"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "@DUNE_MOD_NAME@ @DUNE_MOD_VERSION@"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "@DUNE_MOD_NAME@"
/* Define to the home page for this package. */
#define PACKAGE_URL "@DUNE_MOD_URL@"
/* Define to the version of this package. */
#define PACKAGE_VERSION "@DUNE_MOD_VERSION@"
/* end private */
/* Define to the version of dune-perftool */
#define DUNE_PERFTOOL_VERSION "@DUNE_PERFTOOL_VERSION@"
/* Define to the major version of dune-perftool */
#define DUNE_PERFTOOL_VERSION_MAJOR @DUNE_PERFTOOL_VERSION_MAJOR@
/* Define to the minor version of dune-perftool */
#define DUNE_PERFTOOL_VERSION_MINOR @DUNE_PERFTOOL_VERSION_MINOR@
/* Define to the revision of dune-perftool */
#define DUNE_PERFTOOL_VERSION_REVISION @DUNE_PERFTOOL_VERSION_REVISION@
/* end dune-perftool
Everything below here will be overwritten
*/
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
CXX=@CXX@
CC=@CC@
DEPENDENCIES=@REQUIRES@
Name: @PACKAGE_NAME@
Version: @VERSION@
Description: dune-perftool module
URL: http://dune-project.org/
Requires: dune-pdelab dune-python
Libs: -L${libdir}
Cflags: -I${includedir}
################################
# Dune module information file #
################################
#Name of the module
Module: dune-perftool
Version: 0.0
Maintainer: dominic.kempf@iwr.uni-heidelberg.de
#depending on
Depends: dune-python
dune.perftool.egg-info/*
*.pyc
# Install some additional packages into the virtualenv.
execute_process(COMMAND dune-env python -m pip install ipython ipdb jupyter
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
# Create an ipython notebook wrapper!
create_virtualenv_wrapper(ENVPATH ${DUNE_PYTHON_VIRTUALENV_PATH}
COMMANDS ipython notebook
NAME notebook)
# Install all the external packages that we have as submodules
dune_install_python_package(PATH cgen MAJOR_VERSION 2)
dune_install_python_package(PATH islpy MAJOR_VERSION 2 NO_PIP)
dune_install_python_package(PATH loopy MAJOR_VERSION 2)
# Install out python package
dune_install_python_package(PATH . MAJOR_VERSION 2)
Subproject commit 2dec75c0849a25ee11f7bbb00e4259741be5254d
__import__('pkg_resources').declare_namespace(__name__)
class Foo(object):
pass
Subproject commit c7e8fbdeee009c58ba5c9f5e5d03fc53fcb37c5f
Subproject commit bfa67006ef9af0ff2c796dd4eba31680373155f4
#!/usr/bin/env python
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(name='dune.perftool',
version='0.1',
namespace_packages=['dune'],
description='Performance optimizing form compiler for dune-pdelab',
author='Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de>',
url='http://conan2.iwr.uni-heidelberg.de/git/dominic/dune-perftool',
packages=['dune.perftool'],
install_requires=[],
tests_require=['pytest'],
cmdclass={'test': PyTest})
ufl @ 836e6fea
Subproject commit 836e6fea7332f11e3d14cbfed8da75eb67d713fb
A stamp file to signify that this directory comes from a version control system, not an unpacked tarball
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