forked from Qulacs-Osaka/qulacs-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.04 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
[tool.poetry]
name = "qulacsvis"
version = "0.7.3"
readme = "README.md"
description = "visualizers for qulacs"
repository = "https://github.com/Qulacs-Osaka/qulacs-visualizer"
homepage = "https://github.com/Qulacs-Osaka/qulacs-visualizer"
documentation = "https://qulacs-osaka.github.io/qulacs-visualizer"
authors = ["Qulacs-Osaka <you@example.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
Qulacs = ">=0.5.0"
temp = "^2020.7.2"
Pillow = "^9.1.0"
numpy = "^1.24.0"
scipy = "^1.10.0"
matplotlib = "^3.4.3"
dataclasses-json = "^0.5.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
Sphinx = "^4.1.2"
sphinx-rtd-theme = "^1.0.0"
black = "^22.3.0"
flake8 = "^4.0.1"
mypy = "^0.910"
isort = "^5.10.1"
pytest-mpl = "^0.13"
skqulacs = "^0.5.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"