-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.28 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
[build-system]
requires = [
"setuptools>=77.0.3", # PEP 639
]
build-backend = "setuptools.build_meta"
[project]
name = "dwave-scikit-learn-plugin"
dynamic = ["version"]
authors = [
{name = "D-Wave Inc.", email = "tools@dwavesys.com"},
]
description = "A plugin to scikit-learn for quantum-classical hybrid solving."
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.10"
dependencies = [
"dimod>=0.12.20",
"dwave-optimization>=0.6.2",
"dwave-system>=1.32.0",
"numpy>=2.0.2",
"scikit-learn>=1.6.1",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/dwavesystems/dwave-scikit-learn-plugin"
Download = "https://github.com/dwavesystems/dwave-scikit-learn-plugin/releases"
[tool.setuptools.packages.find]
include = ["dwave.*"]
[tool.setuptools.dynamic]
version = {attr = "dwave.plugins.sklearn.__version__"}
[tool.coverage.run]
omit = ["tests/*"]
source = ["dwave/plugins/sklearn"]
[tool.coverage.report]
include_namespace_packages = true
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]