| [tool.poetry] |
| name = "rsa" |
| version = "4.8-dev0" |
| license = "Apache-2.0" |
| description = "Pure-Python RSA implementation" |
| readme = "README.md" |
| authors = ["Sybren A. Stüvel <[email protected]>"] |
| homepage = "https://stuvel.eu/rsa" |
| classifiers = [ |
| "Development Status :: 5 - Production/Stable", |
| "Intended Audience :: Developers", |
| "Intended Audience :: Education", |
| "Intended Audience :: Information Technology", |
| "License :: OSI Approved :: Apache Software License", |
| "Operating System :: OS Independent", |
| "Programming Language :: Python", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.6", |
| "Programming Language :: Python :: 3.7", |
| "Programming Language :: Python :: 3.8", |
| "Programming Language :: Python :: 3.9", |
| "Programming Language :: Python :: Implementation :: CPython", |
| "Programming Language :: Python :: Implementation :: PyPy", |
| "Topic :: Security :: Cryptography", |
| ] |
| include = [ |
| "LICENSE", "README.md", "CHANGELOG.md", |
| ] |
| |
| [tool.poetry.dependencies] |
| python = ">=3.6, <4" |
| pyasn1 = ">=0.1.3" |
| |
| [tool.poetry.dev-dependencies] |
| coveralls = "^3.0.0" |
| Sphinx = "^3.5.1" |
| pytest = "^6.2.2" |
| pytest-cov = "^2.11.1" |
| tox = "^3.22.0" |
| mypy = "^0.800" |
| flake8 = "^3.8.4" |
| |
| [build-system] |
| requires = ["poetry-core>=1.0.0"] |
| build-backend = "poetry.core.masonry.api" |
| |
| [tool.poetry.scripts] |
| "pyrsa-priv2pub" = "rsa.util:private_to_public" |
| "pyrsa-keygen" = "rsa.cli:keygen" |
| "pyrsa-encrypt" = "rsa.cli:encrypt" |
| "pyrsa-decrypt" = "rsa.cli:decrypt" |
| "pyrsa-sign" = "rsa.cli:sign" |
| "pyrsa-verify" = "rsa.cli:verify" |