Newer
Older
# ~~~
# This file is part of the dune-xt-grid project:
# https://github.com/dune-community/dune-xt-grid
# Copyright 2009-2018 dune-xt-grid developers and contributors. All rights reserved.
# License: Dual licensed as BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
# or GPL-2.0+ (http://opensource.org/licenses/gpl-license)
# with "runtime exception" (http://www.dune-project.org/license.html)
#
# This file is part of the dune-xt-common project:
# ~~~
import sys
from setuptools import setup, find_packages
setup(name='dune.xt.grid',
version='2.4',
namespace_packages=['dune'],
description='Python for Dune-Xt',
author='The dune-xt devs',
author_email='dune-xt-dev@listserv.uni-muenster.de',
url='https://github.com/dune-community/dune-xt-grid',
packages = find_packages(),
zip_safe = 0,
package_data = {'': ['*.so']},)