Skip to content

Commit

Permalink
Merge pull request #23 from fjarri/update-setup-py
Browse files Browse the repository at this point in the history
Add `long_description` to `setup.py` and bump the Python version classifiers
  • Loading branch information
fjarri authored Aug 16, 2022
2 parents c638cd8 + 5535c17 commit 9de0428
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nucypher-core-python/setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
from setuptools import setup
from setuptools_rust import Binding, RustExtension

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="nucypher_core",
description="Protocol structures of Nucypher network",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.2.0",
author="Bogdan Opanchuk",
author_email="bogdan@opanchuk.net",
Expand All @@ -23,10 +29,10 @@
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security :: Cryptography",
],
)

0 comments on commit 9de0428

Please sign in to comment.