diff options
| author | J08nY | 2025-11-18 14:57:44 +0100 |
|---|---|---|
| committer | J08nY | 2025-11-18 14:57:44 +0100 |
| commit | 5b814269b04901b7f6f6607c9fe515dea1cd1b45 (patch) | |
| tree | d2ab9ffeb4bf2eea24b604a00b829e4fd9dff74a | |
| parent | 0a99fb4db3ef07c8e02847c30d54f4ac34685ede (diff) | |
| download | sec-certs-5b814269b04901b7f6f6607c9fe515dea1cd1b45.tar.gz sec-certs-5b814269b04901b7f6f6607c9fe515dea1cd1b45.tar.zst sec-certs-5b814269b04901b7f6f6607c9fe515dea1cd1b45.zip | |
Fixup pyproject.toml.
Apparently:
- License should be a string with the SPDX expression.
- Author with an email does not show up on pypi.org, so duplicate.
| -rw-r--r-- | pyproject.toml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml index 87957edb..682716dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,22 +6,23 @@ name = "sec-certs" authors = [ { name = "Adam Janovsky", email = "adamjanovsky@mail.muni.cz" }, + { name = "Adam Janovsky"}, { name = "Jan Jancar" }, { name = "Petr Svenda" }, { name = "Jiri Michalik" }, { name = "Stanislav Bobon" }, ] - description = "A tool for data scraping and analysis of security certificates from Common Criteria and FIPS 140-2/3 frameworks" + description = "A tool for data scraping and analysis of security certificates from Common Criteria and FIPS 140-2/3 frameworks." readme = "README.md" - license = { "text" = "MIT" } + license = "MIT" classifiers = [ - "Development Status :: 3 - Alpha", - "License :: OSI Approved :: MIT License", + "Development Status :: 4 - Beta", "Topic :: Security", "Topic :: Security :: Cryptography", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Intended Audience :: Developers", "Intended Audience :: Science/Research", ] |
