-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.26 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
62
63
64
65
66
67
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
]
[project]
name = "qml2"
version = "0.1.7"
description = "Collection of Quantum Machine Learning routines"
readme = "README.md"
license.text = "MIT License"
authors = [
{ name = "Konstantin Karandashev" },
{ name = "Stefan Heinen" },
{ name = "Danish Khan" },
{ name = "Jan Weinreich" },
]
# qml2 uses some Python 3.12 syntax
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numba",
"numpy",
"scipy",
]
optional-dependencies.models = [
"aalto-boss",
]
optional-dependencies.morfeus = [
"morfeus-ml",
"rdkit",
]
optional-dependencies.orb_ml = [
"geometric",
"pyscf",
]
optional-dependencies.torch = [
"torch",
]
[tool.setuptools]
packages = [
"qml2",
"qml2.cupy",
"qml2.dataset_formats",
"qml2.gpytorch",
"qml2.jit_interfaces",
"qml2.kernels",
"qml2.models",
"qml2.multilevel_sorf",
"qml2.multilevel_sorf.base_constructors",
"qml2.multilevel_sorf.processed_object_constructors",
"qml2.orb_ml",
"qml2.representations",
"qml2.test_utils",
]
[tool.setuptools.package-data]
qml2 = [
"*/*.cu",
]