-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (59 loc) · 1.46 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.11", "nanobind>=2.13.0"]
build-backend = "scikit_build_core.build"
[project]
name = "quantlop"
version = "0.0.2"
description = "High-performance quantum simulator for matrix-free Hamiltonian evolution"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"numpy",
]
keywords = [
"quantum-computing",
"hamiltonian-simulation",
"krylov-methods",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
dev = [
"nanobind",
"pytest",
"scipy",
"pre-commit",
"ruff",
"tqdm",
"memory-profiler",
"matplotlib",
]
[project.urls]
Homepage = "https://github.com/SimoneGasperini/quantlop"
Issues = "https://github.com/SimoneGasperini/quantlop/issues"
Repository = "https://github.com/SimoneGasperini/quantlop.git"
[tool.scikit-build]
minimum-version = "build-system.requires"
cmake.version = ">=3.18"
wheel.packages = ["python/quantlop"]
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
]
testpaths = ["tests/python"]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.format]
indent-style = "space"
line-ending = "auto"
quote-style = "double"
skip-magic-trailing-comma = false