Skip to content
Snippets Groups Projects
Verified Commit 81c35a6f authored by Lars Bilke's avatar Lars Bilke
Browse files

[wheel] Include README.

parent c286aa79
No related branches found
Tags 6.3.2
No related merge requests found
......@@ -47,10 +47,17 @@ cmake_preset = "wheel"
if platform.system() == "Windows":
cmake_preset += "-win"
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ogs",
version=get_version(),
description="OpenGeoSys Python Module",
long_description=long_description,
long_description_content_type="text/markdown",
author="OpenGeoSys Community",
license="BSD-3-Clause",
packages=find_packages(where="Applications/Python"),
......
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