Skip to content

Commit 03e413b

Browse files
authored
Added a README for vectors, for the benefit of twine check (#11589)
1 parent 089d391 commit 03e413b

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

noxfile.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,14 @@ def docs(session: nox.Session) -> None:
161161
session.run(
162162
"python3", "-m", "readme_renderer", "README.rst", "-o", "/dev/null"
163163
)
164+
session.run(
165+
"python3",
166+
"-m",
167+
"readme_renderer",
168+
"vectors/README.rst",
169+
"-o",
170+
"/dev/null",
171+
)
164172

165173

166174
@nox.session(name="docs-linkcheck")

vectors/README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pyca/cryptography vectors
2+
=========================
3+
4+
This package contains test vectors which are used in ``pyca/cryptography``'s
5+
tests.

vectors/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1010
]
1111
description = "Test vectors for the cryptography package."
12+
readme = "README.rst"
1213
license = {text = "Apache-2.0 OR BSD-3-Clause"}
1314

1415
[project.urls]

0 commit comments

Comments
 (0)