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
setup(name="${ProjectName}",
description="${ProjectDescription}",
version="${ProjectVersionString}",
author="${ProjectAuthor}",
author_email="${ProjectMaintainerEmail}",
packages = find_namespace_packages(include=['dumux.*']),
zip_safe = 0,
package_data = {'': ['*.so']},
install_requires = "${ProjectPythonRequires}".split(' ')
setup(
name="${ProjectName}",
description="${ProjectDescription}",
version="${ProjectVersionString}",
author="${ProjectAuthor}",
author_email="${ProjectMaintainerEmail}",
packages=find_namespace_packages(include=["dumux.*"]),
zip_safe=0,
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