-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
66 lines (58 loc) · 1.71 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
[tool.poetry]
name = "skqulacs"
version = "0.5.0"
description = "scikit-qulacs is a library for quantum neural network. This library is based on qulacs and named after scikit-learn."
authors = ["Qulacs-Osaka <[email protected]>"]
license = "MIT"
readme = "./README.md"
repository = "https://github.com/Qulacs-Osaka/scikit-qulacs"
homepage = "https://github.com/Qulacs-Osaka/scikit-qulacs"
documentation = "https://qulacs-osaka.github.io/scikit-qulacs/index.html"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
numpy = "~1.24.0"
scipy = "~1.10.0"
scikit-learn = "^1.0.0"
qulacs = "^0.5.0"
typing-extensions = "^4.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
pandas = "~1.3.0"
black = "^22.8.0"
flake8 = "^6.0.0"
isort = "^5.10.1"
mypy = "^1.0.1"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
Sphinx = "^4.3.0"
sphinx-book-theme = "^1.0.0"
ipykernel = "^6.16.0"
myst-nb = "^0.17.0"
[tool.poetry.group.bench]
optional = true
[tool.poetry.group.bench.dependencies]
pytest-benchmark = "^4.0.0"
PennyLane = "^0.24.0"
[tool.isort]
default_section = "THIRDPARTY"
ensure_newline_before_comments = true
force_grid_wrap = 0
force_single_line = false
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"