forked from vprusso/toqito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (57 loc) · 1.12 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
[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 = "0.0.6"
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.7"
cvx = "*"
cvxpy = "^1.1.0a3"
numpy = "*"
scipy = "*"
[tool.poetry.dev-dependencies]
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 = "*"
sphinx_rtd_theme = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"