-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (59 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "quantum-siren"
version = "0.1.0"
description = ""
authors = ["lc3267 <melvin.strobl@kit.edu>"]
readme = "README.md"
[[tool.poetry.source]]
name = "torch_cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[[tool.poetry.source]]
name = "torch_gpu"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[[tool.poetry.source]]
name = "quantum"
url = "https://ea3a0fbb-599f-4d83-86f1-0e71abe27513.ka.bw-cloud-instance.org/lc3267/quantum/+simple/"
priority = "supplemental"
[tool.poetry.extras]
gpu=["torchvision"]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pillow = "^10.3.0"
scikit-image = "^0.21.0"
ipykernel = "^6.25.0"
torch = [
# Uncomment the following line once this issue is resolved: https://github.com/python-poetry/poetry/issues/7748 # noqa
# {version = "2.1.0", source = "torch_gpu", markers = "extra == 'gpu'"},
{version = "2.1.0+cpu", source = "torch_cpu", markers = "extra != 'gpu'"}
]
torchvision = "^0.16.0"
kedro = "^0.19.6"
torchsummary = "^1.5.1"
torchmetrics = "^1.0.2"
kedro-mlflow = "^0.12.2"
plotly = "^5.22.0"
black = "^24.4.2"
kaleido = "0.2.1"
mlflow = "^2.13.2"
qml-essentials = "^0.1.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.kedro]
package_name = "quantum_siren"
project_name = "quantum_siren"
kedro_init_version = "0.19.5"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/quantum_siren -ra"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]
[tool.kedro_telemetry]
project_id = "92e513183fe94755a8ab9349dcf5d31d"