-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.65 KB
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
[build-system]
requires = [
"setuptools>=77.0.3", # PEP 639
]
build-backend = "setuptools.build_meta"
[project]
name = "dwave-experimental"
dynamic = ["version"]
authors = [
{name = "D-Wave Inc.", email = "tools@dwavesys.com"},
]
description = "Ocean utilities to support advanced QPU prototype features."
readme = {file = "README.rst", content-type = "text/x-rst"}
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"dimod>=0.12.20,<0.13",
"dwave-cloud-client>=0.13.6,<0.15",
"dwave-samplers>=1,<2",
"dwave-system>=1.32.0,<2",
"matplotlib>=3,<4",
"minorminer>=0.2.21,<0.3",
"numpy>=2,<3",
]
# note: 3.14.1 excluded due to a regression bug breaking dataclasses in NetworkX
# see: https://github.com/networkx/networkx/issues/8362,
# https://github.com/python/cpython/issues/142214
requires-python = ">=3.10, !=3.14.1"
[project.urls]
Issues = "https://github.com/dwavesystems/dwave-experimental/issues"
Repository = "https://github.com/dwavesystems/dwave-experimental.git"
[tool.setuptools.dynamic]
version = {attr = "dwave.experimental.__version__"}
[tool.setuptools.packages.find]
include = ["dwave.*"]
[tool.setuptools.package-data]
"*" = ["data/*.json"]
[tool.coverage.run]
omit = ["tests/*"]
source = ["dwave/experimental"]
[tool.coverage.report]
include_namespace_packages = true
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]