Skip to content

Commit

Permalink
update setuppy
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffWigger committed Nov 10, 2024
1 parent 8cc7d62 commit 5fd7efa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"win-arm64": "ARM64",
}

root_dir = Path(__file__).parent
long_description = (root_dir / "README.md").read_text()


# A CMakeExtension needs a sourcedir instead of a file list.
# The name must be the _single_ output extension from the CMake build.
Expand Down Expand Up @@ -124,7 +127,8 @@ def build_extension(self, ext: CMakeExtension) -> None:
version="0.0.3",
author="Jeffrey Wigger",
description="Python bindings for compintc: A variable length compression algorithm.",
long_description="",
long_description=long_description,
long_description_content_type="text/markdown",
ext_modules=[CMakeExtension("_compintpy")],
cmdclass={"build_ext": CMakeBuild},
zip_safe=False,
Expand Down

0 comments on commit 5fd7efa

Please sign in to comment.