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

[python][black] Apply formatting

parent c05f66c2
No related branches found
No related tags found
1 merge request!2681Feature/python main file
__import__('pkg_resources').declare_namespace(__name__) __import__("pkg_resources").declare_namespace(__name__)
from setuptools import setup, find_namespace_packages from setuptools import setup, find_namespace_packages
setup(name="${ProjectName}", setup(
description="${ProjectDescription}", name="${ProjectName}",
version="${ProjectVersionString}", description="${ProjectDescription}",
author="${ProjectAuthor}", version="${ProjectVersionString}",
author_email="${ProjectMaintainerEmail}", author="${ProjectAuthor}",
packages = find_namespace_packages(include=['dumux.*']), author_email="${ProjectMaintainerEmail}",
zip_safe = 0, packages=find_namespace_packages(include=["dumux.*"]),
package_data = {'': ['*.so']}, zip_safe=0,
install_requires = "${ProjectPythonRequires}".split(' ') package_data={"": ["*.so"]},
install_requires="${ProjectPythonRequires}".split(" "),
) )
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