summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: b7ecb73597f9ee33b4e06c37fb220f27508680d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "rsa"
version = "4.8"
license = "Apache-2.0"
description = "Pure-Python RSA implementation"
readme = "README.md"
authors = ["Sybren A. Stüvel <sybren@stuvel.eu>"]
homepage = "https://stuvel.eu/rsa"
repository = "https://github.com/sybrenstuvel/python-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 :: 3.10",
  "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 = "^4.3.0"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
tox = "^3.22.0"
mypy = "^0.910"
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"

[tool.black]
line-length = 100