-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 1.17 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
[tool.poetry]
name = "qosst-hal"
version = "0.10.0"
description = "Hardware Abstraction Layer (HAL) submodule of QOSST"
authors = [
"Yoann Piétri <Yoann.Pietri@lip6.fr>",
"Thomas Liege <Thomas.Liege@lip6.fr>",
]
packages = [{ include = "qosst_hal" }, { include = "qosst_hal/py.typed" }]
license = "GPLv3"
readme = "README.md"
homepage = "https://github.com/qosst"
repository = "https://github.com/qosst/qosst-hal"
documentation = "https://qosst-hal.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"
numpy = "^1.22.3"
[tool.poetry.group.dev.dependencies]
Sphinx = "^5.0.0"
sphinx-rtd-theme = "^1.0.0"
sphinx-prompt = "^1.5.0"
myst-parser = "^1.0.0"
setuptools = "^67.6.1"
docstr-coverage = "^2.2.0"
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"