forked from NVIDIA/cudaqx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml.cu12
More file actions
66 lines (60 loc) · 1.84 KB
/
pyproject.toml.cu12
File metadata and controls
66 lines (60 loc) · 1.84 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
[build-system]
requires = ["scikit-build-core>=0.10"]
build-backend = "scikit_build_core.build"
[project]
name = "cudaq-solvers-cu12"
dynamic = ["version"]
description = "Accelerated libraries for quantum-classical solvers built on CUDA-Q"
authors = [{name = "NVIDIA Corporation & Affiliates"}]
maintainers = [{name = "NVIDIA Corporation & Affiliates"}]
requires-python = ">=3.11"
readme = "README.md"
dependencies = [
'cuda-quantum-cu12 >= 0.13',
'fastapi',
'networkx',
'pyscf',
'scipy',
'uvicorn',
]
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
"Environment :: GPU :: NVIDIA CUDA",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Environment :: GPU :: NVIDIA CUDA :: 13",
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
]
[project.urls]
Homepage = "https://nvidia.github.io/cudaqx"
Documentation = "https://nvidia.github.io/cudaqx/components/solvers/introduction.html"
Repository = "https://github.com/NVIDIA/cudaqx"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
build-dir = "_skbuild"
build.verbose = true
cmake.version = ">=3.28"
cmake.build-type = "Release"
install.components = ["solvers-python", "solvers-lib", "solvers-tools"]
wheel.packages = []
logging.level = "DEBUG"
ninja.version = ">=1.10"
[tool.scikit-build.cmake.define]
CUDAQX_SOLVERS_INCLUDE_TESTS = false
CUDAQX_SOLVERS_BINDINGS_PYTHON = true
[tool.setuptools_scm]
write_to = "_version.py"
[project.optional-dependencies]
gqe = [
'torch>=2.0.0',
'lightning>=2.0.0',
'ml_collections>=0.1.0',
'mpi4py>=3.1.0',
'transformers>=4.30.0',
]