diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2023-03-31 02:13:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-31 15:13:40 +0900 |
| commit | 35ef119e2fbc0263077bae319e22d2f12767efe9 (patch) | |
| tree | 6c7f038cce14f372aa504492c09faaccb5a76824 | |
| parent | 3622cb389709e632678bf80649fcf26833572da8 (diff) | |
| download | cryptography-35ef119e2fbc0263077bae319e22d2f12767efe9.tar.gz | |
Make the readme metadata static (#8639)
| -rw-r--r-- | pyproject.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7bdf2a5cf..230f2fecd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ] description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +readme = "README.rst" license = {text = "Apache-2.0 OR BSD-3-Clause"} classifiers = [ "Development Status :: 5 - Production/Stable", @@ -44,7 +45,7 @@ dependencies = [ # Must be kept in sync with `build-system.requires` "cffi >=1.12", ] -dynamic = ["version", "readme"] +dynamic = ["version"] [project.urls] homepage = "https://github.com/pyca/cryptography" @@ -66,7 +67,6 @@ exclude = [ [tool.setuptools.dynamic] version = {attr = "cryptography.__version__"} -readme = {file = "README.rst", content-type = "text/x-rst"} [project.optional-dependencies] ssh = ["bcrypt >=3.1.5"] |
