Added a README for vectors, for the benefit of twine check (#11589)

This commit is contained in:
Alex Gaynor 2024-09-12 18:05:46 -04:00 committed by GitHub
parent 089d391254
commit 03e413bfcc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 0 deletions

View file

@ -161,6 +161,14 @@ def docs(session: nox.Session) -> None:
session.run(
"python3", "-m", "readme_renderer", "README.rst", "-o", "/dev/null"
)
session.run(
"python3",
"-m",
"readme_renderer",
"vectors/README.rst",
"-o",
"/dev/null",
)
@nox.session(name="docs-linkcheck")

5
vectors/README.rst Normal file
View file

@ -0,0 +1,5 @@
pyca/cryptography vectors
=========================
This package contains test vectors which are used in ``pyca/cryptography``'s
tests.

View file

@ -9,6 +9,7 @@ authors = [
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
]
description = "Test vectors for the cryptography package."
readme = "README.rst"
license = {text = "Apache-2.0 OR BSD-3-Clause"}
[project.urls]