-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
44 lines (38 loc) · 1.06 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
[metadata]
name = orquestra-braket
description = "Orquestra Braket package"
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/zapatacomputing/orquestra-braket
author = Zapata Computing Inc.
author_email = [email protected],
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 =
numpy>=1.20
scipy>=1.4.1
sympy>=1.5,<=1.9
orquestra-quantum
# Previously, we have had some incompatibilities with braket
# This is a cautionary upper bound for a known good version
amazon-braket-sdk<=1.57.2
[options.packages.find]
where = src
[options.extras_require]
dev =
orquestra-python-dev
[flake8]
ignore = E203,E266,F401,W605
max-line-length = 88