-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
84 lines (75 loc) · 1.79 KB
/
setup.cfg
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = benchq
description = "BenchQ platform for resource estimation"
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/zapatacomputing/benchq
author = Zapata Computing Inc.
author_email = [email protected],
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
Topic :: Scientific/Engineering
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages = find_namespace:
python_requires = >=3.9,!=3.9.7
install_requires =
orquestra-quantum==0.12.0
orquestra-vqa==0.9.0
orquestra-qiskit==0.14.0
orquestra-cirq==0.12.0
orquestra-opt==0.10.0
networkx>=2.8.7
# Used to define and run Orquestra workflows
orquestra-sdk[all]>=0.63.0
matplotlib>=3.6
numpy>=1.20
more-itertools~=9.1.0
pandas==1.5.3
pyLIQTR==0.3.3
openfermion[resources]~=1.6.0
pytest # required by OpenFermion's resource_estimates module
graph-state-generation==0.2.0
juliapkg==0.1.10
juliacall~=0.9.10
h5py~=3.8.0
mlflow~=2.3.2
stim==1.10
optuna==3.3.0
cvxpy==1.3.2
aiohttp~=3.9.0
setuptools<=65.6.3
UpSetPlot==0.9.0
[options.packages.find]
where = src
[options.extras_require]
dev =
orquestra-python-dev
# Used in tests
pytest-benchmark~=4.0.0
numba~=0.57.0
benchq[pyscf]
benchq[azure]
benchq[jabalizer]
pyright
pyscf =
pyscf==2.2.1
scipy<1.11.0
openfermionpyscf==0.5
azure =
benchq[pyscf]
azure-quantum==0.28.262328b1
pyqir==0.8.0
qiskit_qir==0.3.1
qiskit_ionq==0.3.10
jabalizer =
pauli_tracker
mbqc_scheduling
[flake8]
ignore = E203,E266,F401,W503
max-line-length = 88