Skip to content
Snippets Groups Projects
setup.py.in 971 B
Newer Older
René Fritze's avatar
René Fritze committed
#!/usr/bin/env python
#
# ~~~
# 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.
René Fritze's avatar
René Fritze committed
# 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)
René Fritze's avatar
René Fritze committed
# Authors:
#   Rene Fritze (2018)
#
# This file is part of the dune-xt-common project:
# ~~~
René Fritze's avatar
René Fritze committed

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']},)