-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (54 loc) · 1.28 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
[tool.poetry]
name = "qulearn"
version = "0.8.0"
description = "Streamlining quantum and classical machine learning model development."
authors = ["Mazen Ali <[email protected]>"]
readme = "README.md"
packages = [{include = "qulearn"}]
[tool.poetry.dependencies]
python = ">=3.9 <3.12"
pythreejs = "^2.4.1"
ipywidgets = "7.7.1"
matplotlib = "^3.6.3"
pennylane = "^0.28.0"
torch = "2.0"
pyyaml = "^6.0"
pennylane-lightning = "^0.29.0"
torch-tb-profiler = "^0.4.1"
tensorflow = "^2.12.0"
protobuf = "4.23.0"
scipy = "^1.11.1"
torchviz = "^0.0.2"
torchmetrics = "^1.2.0"
pydoe = "^0.3.8"
scikit-learn = "^1.3.2"
tntorch="^1.1.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.3.0"
line-profiler = "^4.0.3"
flake8 = "^7"
black = "^24"
isort = "^5"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
coverage = "^7.6.0"
[tool.poetry.group.docs.dependencies]
docformatter = "^1.7.1"
pyment = "^0.3.3"
sphinx = "^7.0.1"
[tool.mypy]
[[tool.mypy.overrides]]
module = "pennylane"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "scipy.stats"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "toml"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "conf"
ignore_errors = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"