Skip to content
Snippets Groups Projects
Commit b4848fe9 authored by Andreas Dedner's avatar Andreas Dedner
Browse files

[python] remove dune packages from 'install_requires' in setup.py.in

parent d2f3ff3d
No related branches found
No related tags found
No related merge requests found
from setuptools import setup, find_packages
pkg = [m for m in "${ProjectPythonRequires}".split(' ') if "dune" not in m]
setup(name="${ProjectName}",
namespace_packages=['dune'],
description="${ProjectDescription}",
......@@ -9,5 +11,5 @@ setup(name="${ProjectName}",
packages = find_packages(),
zip_safe = 0,
package_data = {'': ['*.so']},
install_requires = "${ProjectPythonRequires}".split(' ')
install_requires = pkg
)
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