-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
44 lines (38 loc) · 962 Bytes
/
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyhpke"
version = "0.5.4"
description = "A Python implementation of HPKE."
authors = ["Ajitomi Daisuke <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dajiaji/pyhpke"
include = [
"CHANGES.rst",
"docs",
"poetry.lock",
"tests",
"tox.ini",
]
exclude = [
"docs/_build",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
cryptography = ">=42.0.1,<44"
Sphinx = {version = ">=7.1,<8", optional = true, extras = ["docs"]}
sphinx-autodoc-typehints = {version = ">=1.25.2", optional = true, extras = ["docs"]}
sphinx-rtd-theme = {version = ">=1.2.1", optional = true, extras = ["docs"]}
[tool.poetry.extras]
docs = [
"Sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
]
[tool.poetry.dev-dependencies]
pytest = ">=7.4.2"
pytest-cov = ">=4.1.0"
tox = ">=4.11.3"
pre-commit = ">=3.4.0"