-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
121 lines (111 loc) · 3.25 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[tool.poetry]
name = "blake2signer"
version = "3.1.0"
description = "A library to use BLAKE in keyed hashing mode to sign and verify signed data"
authors = ["HacKan <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://gitlab.com/hackancuba/blake2signer"
documentation = "https://blake2signer.hackan.net"
keywords = [
"blake",
"cryptography",
"crypto",
"signer",
"signature",
"keyed-hashing",
"hashing",
"mac",
"digest",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: Stackless",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.urls]
"Changelog" = "https://blake2signer.hackan.net/en/latest/changelog"
"Issues" = "https://gitlab.com/hackancuba/blake2signer/-/issues"
[[tool.poetry.source]]
name = "pythonfuzz"
url = "https://gitlab.com/api/v4/projects/19904939/packages/pypi/simple"
priority = "explicit"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry>=1.0.0",
]
[tool.poetry.extras]
blake3 = ["blake3"]
[tool.poetry.dependencies]
python = ">=3.8.1, <4.0"
blake3 = {version = ">0.3.0", optional = true}
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
darglint = "^1.8.1"
dlint = "^0"
flake8 = "^6.1"
flake8-2020 = "^1.6.0"
flake8-annotations-complexity = "^0"
flake8-bandit = "^4"
flake8-blind-except = "^0"
flake8-broken-line = "^1"
flake8-bugbear = "^23"
flake8-builtins = "^2"
flake8-comprehensions = "^3.1.4"
flake8-debugger = "^4.0.0"
flake8-docstrings = "^1.4.0"
flake8-eradicate = "^1.0.0"
flake8-executable = "^2.0.3"
flake8-import-order = "^0"
flake8-logging-format = "^0"
flake8-no-implicit-concat = "^0"
flake8-pytest-style = "^1.6.0"
flake8-quotes = "^3.0.0"
flake8-string-format = "^0"
pep8-naming = "^0"
perflint = "^0"
pydocstyle = "^6"
pylint = "^2.12.2"
radon = "^6.0.1"
[tool.poetry.group.tests.dependencies]
blake3 = ">=0.3.4"
coverage = "^7"
invoke = "^2"
junitparser = "^3.1.0"
pytest = "^7.1.1"
pytest-cov = "^4"
pytest-custom_exit_code = "^0"
pytest-randomly = "^3.8.0"
pytest-watch = "^4.2.0"
pytest-xdist = {extras = ["psutil"], version = "^3"}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
add-trailing-comma = "^3.1.0"
bandit = "^1.6.2"
mypy = "^1"
pyproject-fmt = "^1.5.3"
# ToDo: pythonfuzz==1.0.10 requires a psutil version that has a security issue, thus I'm not
# adding it here yet
# pythonfuzz = {version = "^1.0.10", source = "pythonfuzz"}
safety = "^2"
scriv = "^1"
toml = "^0" # yapf now requires this
types-setuptools = "^69"
yapf = "^0"