-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (40 loc) · 1.31 KB
/
pyproject.toml
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
[tool.poetry]
name = "encryption-helper"
version = "0.0.1"
description = "A Python CLI application for generating RSA public and private key pairs"
authors = ["Sebastien Rousseau <sebastien.rousseau-bedouch@hsbc.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "encryption_helper"}]
repository = "https://github.com/hsbc/encryption-helper-python"
keywords = ["rsa", "keys", "cryptography", "encryption", "decryption", "python"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8"
cryptography = "^43.0.0"
setuptools = "^75.0.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.2"
pytest-mock = "^3.14.0"
[tool.poetry.scripts]
encryption-helper = "encryption_helper.__main__:main"
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.6"
bandit = "^1.7.9"
pytest = "^8.3.2"
pytest-mock = "^3.14.0"
setuptools = "^75.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]