-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 1021 Bytes
/
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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "oscar"
authors = [
{name = "Tianyi Hao", email = "[email protected]"},
]
description = "OSCAR: configure and debug variational quantum algorithms efficiently"
readme = "README.md"
requires-python = ">=3.10"
keywords = []
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy>=1.23.5",
"scipy>=1.10.1",
"matplotlib>=3.7.1",
"cvxpy>=1.3.1",
"qiskit>=0.45.1,<1.0",
"qiskit_aer>=0.13.1",
"nlopt>=2.7.1",
"teneva>=0.14.8",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["oscar"]
[tool.setuptools_scm]
write_to = "oscar/_version.py"
[tool.black]
line-length = 99 # override black's default line-length
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| venv
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
# make it compatible with black
profile = "black"