Add more information in setuptools.setup() (#406)

This commit is contained in:
Justin Traglia 2024-03-04 14:11:06 -06:00 committed by GitHub
parent 978633ccea
commit 76888c9a40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,8 @@
from setuptools import setup, Extension
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
def main():
@ -6,7 +10,12 @@ def main():
name="ckzg",
version="0.4.3",
author="Ethereum Foundation",
author_email="security@ethereum.org",
url="https://github.com/ethereum/c-kzg-4844",
description="Python bindings for C-KZG-4844",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache-2.0",
ext_modules=[
Extension(
"ckzg",