-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
70 lines (60 loc) · 1.43 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
[tool.poetry]
name = "nbed"
version = "0.0.7"
description = ""
authors = [
"Michael Williams de la Bastida <[email protected]>",
"Alexis Ralli <[email protected]>"
]
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
openfermion = "^1.1.0"
PennyLane = "^0.33.0"
PyYAML = "^6.0.0"
types-PyYAML = "^5.4.11"
qiskit-nature = "^0.7.0"
cached-property = "^1.5.2"
py3Dmol = "^1.7.0"
jupyter = "^1.0.0"
h5py = "^3.7"
symmer = "~0.0.7"
pyscf = "^2.3.0"
grpcio = "^1.59.0"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
flake8 = ">=4.0.0, <5"
pydocstyle = "^6.1.1"
pytest = "^7.2.2"
mypy = "^0.902"
bpython = "^0.21"
isort = "^5.9.3"
coverage = "^6.3.1"
pandoc = "^2.3"
poetry = "^1.7.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
nbsphinx = "^0.9.0"
Sphinx = "^5"
sphinx-rtd-theme = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
nbed = "nbed.embed:cli"
[tool.isort]
profile = "black"
multi_line_output = 3
# Ignore pytest warnings here
[tool.pytest.ini_options]
filterwarnings = [
#H5py throws a custom deprecation warning about default file mode
'ignore:.*Using default_file_mode.*instead:UserWarning',
# Lots of downstream deprecation warnings
'ignore::DeprecationWarning'
]
[tool.pydocstyle]
convention = "google"