-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
49 lines (46 loc) · 1.5 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
[tool.poetry]
name = "clkhash"
version = "0.18.3"
description = "Encoding utility to create Cryptographic Linkage Keys"
license = "Apache"
authors = ["Brian Thorne", "Wilko Henecka", "Guillaume Smith"]
readme = "README.md"
homepage = "https://github.com/data61/clkhash"
repository = "https://github.com/data61/clkhash"
documentation = "http://clkhash.readthedocs.io/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
"Environment :: Console",
"Operating System :: OS Independent",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
bitarray = "^2.6.0"
mypy_extensions = "^0.4.3"
cryptography = "^40.0"
tqdm = "^4.65"
pyblake2 = { version = "^1.1", python = "<3.6" }
jsonschema = "^4.16.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
pytest-cov = "^4.0.0"
nbval = "^0.10.0"
requests-mock = "^1.10.0"
hypothesis = "^6.75"
matplotlib = "^3.7.1"
black = "^23.3.0"
ruff = "^0.0.267"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"