-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (61 loc) · 1.22 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
[tool.black]
line-length = 79
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # black-default
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.poetry]
name = "qustop"
version = "0.0.3"
description = "Python tools for the optimizing over quantum states."
authors = [
"Vincent Russo <vincentrusso1@gmail.com>"
]
maintainers = [
"Vincent Russo <vincentrusso1@gmail.com>"
]
readme = "README.md"
homepage = "https://vprusso.github.io/"
repository = "https://github.com/vprusso/qustop"
keywords = ["quantum information", "quantum computing", "quantum state optimization", "quantum state distinguishability"]
[tool.poetry.dependencies]
python = "^3.8"
cvx = "*"
cvxpy = "*"
numpy = "*"
scipy = "*"
toqito = "*"
scs = "^2.1.2"
isort = "^5.9.3"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.7"
flake8-docstrings = "^1.5"
ipython = "*"
pep8 = "^1.7"
pylint = "^2.4"
pytest = "*"
pytest-cov = "*"
mypy = "^0.750.0"
coverage = "^4.5"
coveralls = "^1.9"
recommonmark = "*"
sphinx = "3.1.2"
sphinx_rtd_theme = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"