Skip to content
Snippets Groups Projects
Commit 100e18f1 authored by Martin Bauer's avatar Martin Bauer
Browse files

Added long description (readme) to package

parent 2a0ae8c3
Branches master
Tags
No related merge requests found
Pipeline #22334 passed with stage
in 1 minute and 21 seconds
...@@ -43,9 +43,15 @@ def version_number_from_git(tag_prefix='release/', sha_length=10, version_format ...@@ -43,9 +43,15 @@ def version_number_from_git(tag_prefix='release/', sha_length=10, version_format
return version_string return version_string
def readme():
with open('README.md') as f:
return f.read()
setup(name='lbmpy_walberla', setup(name='lbmpy_walberla',
version=version_number_from_git(), version=version_number_from_git(),
description='Code Generation for Lattice Boltzmann Methods in the walberla framework', description='Code Generation for Lattice Boltzmann Methods in the walberla framework',
long_description=readme(),
author='Martin Bauer', author='Martin Bauer',
license='AGPLv3', license='AGPLv3',
author_email='martin.bauer@fau.de', author_email='martin.bauer@fau.de',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment