mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Added a README for vectors, for the benefit of twine check (#11589)
This commit is contained in:
parent
089d391254
commit
03e413bfcc
3 changed files with 14 additions and 0 deletions
|
|
@ -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
5
vectors/README.rst
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
pyca/cryptography vectors
|
||||
=========================
|
||||
|
||||
This package contains test vectors which are used in ``pyca/cryptography``'s
|
||||
tests.
|
||||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue