-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
59 lines (53 loc) · 1.25 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
[metadata]
name = orquestra-opt
description = "Orquestra's library with optimization routines and interfaces"
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/zapatacomputing/orquestra-opt
author = Zapata Computing Inc.
author_email = info@zapatacomputing.com,
license = Apache Software License 2.0
license_file = LICENSE
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
numpy>=1.20
scipy>=1.4.1
networkx>=2.4
[options.packages.find]
where = src
[options.extras_require]
scikit-quant =
scikit-quant>=0.8.0
cma =
cma>=3.0.0
matplotlib
qiskit =
orquestra-qiskit
qiskit-algorithms==0.2.1
qubo =
dimod>=0.9.11
cvxpy~=1.1.11
ttopt =
ttopt~=0.6.2
teneva
all =
orquestra-opt[cma]
orquestra-opt[qiskit]
orquestra-opt[qubo]
orquestra-opt[scikit-quant]
orquestra-opt[ttopt]
dev =
orquestra-python-dev
orquestra-opt[all]