Skip to content
Snippets Groups Projects
Unverified Commit c2b351c9 authored by René Fritze's avatar René Fritze
Browse files

[py] adds directory stub

(only used for depedency travking of travis script atm)
parent f945a252
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,7 @@ find_file(SPE10MODEL1DATA
add_subdirectory(doc)
add_subdirectory(dune)
add_subdirectory(cmake/modules)
dune_install_python_package(PATH python)
add_format(${CMAKE_CURRENT_SOURCE_DIR})
......
build/
dist/
dune.gdt.egg-info/
__import__('pkg_resources').declare_namespace(__name__)
[pytest]
pep8maxlinelength = 120
pep8ignore = E221,E226,E241,E242
#!/usr/bin/env python
import sys
from setuptools import setup
setup(name='dune.gdt',
version='2.4',
namespace_packages=['dune'],
description='Python for Dune-Gdt',
author='The dune-gdt devs',
author_email='dune-gdt-dev@listserv.uni-muenster.de',
url='https://github.com/dune-community/dune-gdt',
packages=['dune.gdt'],
install_requires=['jinja2'],
)
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