-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.31 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 = "qml-essentials"
version = "0.1.20"
description = ""
authors = ["Melvin Strobl <[email protected]>", "Maja Franz <[email protected]>"]
maintainers = ["Melvin Strobl <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://cirkiters.github.io/qml-essentials/"
documentation = "https://cirkiters.github.io/qml-essentials/"
repository = "https://github.com/cirKITers/qml-essentials"
keywords = ["quantum", "quantum machine learning", "qml"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pennylane = "^0.39.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pytest = "^8.3.4"
flake8 = "^7.1.1"
pre-commit = "^4.0.1"
coverage = "^7.6.10"
licensecheck = "^2024.3"
matplotlib = "^3.10.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.49"
mkdocstrings-python = "^1.13.0"
markdown-include = "^0.8.1"
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"expensive: Tests that take a long time to run",
"unittest: Tests with an assertion to check the output of a particular unit",
"smoketest: Tests that just run a method and check if it not fails",
]