forked from vprusso/toqito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (64 loc) · 1.28 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.black]
line-length = 100
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 = "toqito"
version = "1.0.4"
description = "Python tools for the study of quantum information."
authors = [
"Vincent Russo <[email protected]>"
]
maintainers = [
"Vincent Russo <[email protected]>"
]
readme = "README.md"
homepage = "https://vprusso.github.io/toqito/"
repository = "https://github.com/vprusso/toqito"
keywords = ["quantum information", "quantum computing", "nonlocal games"]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
cvxpy = "^1.2.1"
cvxopt = "^1.2.5"
numpy = "^1.19.4"
scipy = "^1.8.0"
#scs = "^2.1.2"
picos = "^2.0.30"
[tool.poetry.dev-dependencies]
black = "^21.10b0"
distlib = "^0.3.4"
flake8 = "^3.7"
flake8-docstrings = "^1.5"
ipython = "*"
isort = "^5.9.3"
myst-parser = "*"
pep8 = "^1.7"
pydocstyle = "^6.1.1"
pylint = "^2.4"
pytest = "*"
pytest-cov = "*"
mypy = "^0.750.0"
coverage = "^4.5"
coveralls = "^1.9"
setuptools = "<=57.5.0"
sphinx = "3.1.2"
sphinx_rtd_theme = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"