Add more information in setuptools.setup() (#406)
This commit is contained in:
parent
978633ccea
commit
76888c9a40
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue