-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (62 loc) · 1.45 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
[tool.kedro]
package_name = "partiqleDTR"
project_name = "partiqleDTR"
project_version = "0.18.1"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = "kedro"
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/partiqleDTR -ra"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]
[tool.poetry]
name = "partiqleDTR"
version = "0.1.0"
description = ""
authors = ["lc3267 <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
torch = "^1.12.1+cpu"
black = "^22.6.0"
kedro = "^0.18.3"
kedro-viz = "^5.1.1"
kedro-mlflow = "^0.11.3"
formattex = "^0.0.3"
qiskit-machine-learning = "^0.5.0"
python-json-logger = "^2.0.7"
phasespace = "^1.8.0"
particle = "^0.21.2"
decaylanguage = "^0.15.1"
zfit = "^0.11.1"
zfit-physics = "^0.5.0"
torchvision = "^0.14.1"
redis = "^4.5.1"
optuna = "^3.1.0"
matplotlib = "^3.7.0"
torchinfo = "^1.7.2"
pylatexenc = "^2.10"
qiskit = "0.39.3"
dask = "^2023.3.1"
distributed = "^2023.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pre-commit = "^2.20.0"
black = "^22.10.0"
flake8 = "^6.0.0"
mkdocs = "^1.4.2"
mkdocstrings = "^0.19.0"
markdown-include = "^0.8.0"
mkdocs-material = "^8.5.11"
mkdocstrings-python = "^0.8.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"