-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
55 lines (47 loc) · 1.14 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cwt"
version = "2.8.0"
description = "A Python implementation of CWT/COSE."
authors = ["Ajitomi Daisuke <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dajiaji/python-cwt"
include = [
"CHANGES.rst",
"docs",
"poetry.lock",
"samples",
"tests",
"tox.ini",
]
exclude = [
"docs/_build",
]
[tool.poetry.dependencies]
python = "^3.9"
asn1crypto = "^1.4.0"
cbor2 = "^5.4.2"
certvalidator = "^0.11.1"
cryptography = ">=42.0.1,<44"
Sphinx = {version = ">=7.1,<8", optional = true, extras = ["docs"]}
sphinx-autodoc-typehints = {version = ">=1.25.2,<3.0.0", optional = true, extras = ["docs"]}
sphinx-rtd-theme = {version = ">=1,<4", optional = true, extras = ["docs"]}
pyhpke = ">=0.5.3,<1.0.0"
[tool.poetry.extras]
docs = [
"Sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
]
[tool.poetry.dev-dependencies]
pytest = "^8.3"
pytest-cov = "^6.0.0"
tox = "^4.23.2"
pre-commit = "^4.0.1"
[tool.poetry.group.dev.dependencies]
docutils = "^0.21.2"
[tool.mypy]
ignore_missing_imports = true