Skip to content
Snippets Groups Projects
Commit d622d536 authored by Timo Koch's avatar Timo Koch
Browse files

[python] Update setup.py.in for dune 2.9

parent bb018365
No related branches found
No related tags found
Loading
from setuptools import setup
REQUIRED_PACKAGES = '${RequiredPythonModules}'.replace(';',' ').split(' ')
setup(
name="${ProjectName}",
description="${ProjectDescription}",
......@@ -9,5 +11,6 @@ setup(
packages=["dumux"],
zip_safe=0,
package_data={"": ["*.so"]},
install_requires="${ProjectPythonRequires}".split(" "),
install_requires=REQUIRED_PACKAGES,
include_package_data=True,
)
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