-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (36 loc) · 1.18 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
[tool.poetry]
name = "qosst-skr"
version = "0.10.0"
description = "Secret Key Rate (SKR) submodule of QOSST, with the different methods to compute the Secret Key Rate."
authors = ["Yoann Piétri <Yoann.Pietri@lip6.fr>"]
packages = [{ include = "qosst_skr" }, { include = "qosst_skr/py.typed" }]
license = "GPLv3"
readme = "README.md"
homepage = "https://github.com/qosst"
repository = "https://github.com/qosst/qosst-skr"
documentation = "https://qosst-skr.readthedocs.io/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Security :: Cryptography",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
qosst-core = "^0.10.0"
[tool.poetry.group.dev.dependencies]
myst-parser = "^1.0.0"
sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.0.0"
setuptools = "^67.6.1"
docstr-coverage = "^2.2.0"
pylint = "^2.17.4"
black = "^23.3.0"
mypy = "^1.3.0"
sphinx-prompt = "^1.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"