-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (51 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
68 lines (51 loc) · 1.39 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
68
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "oqd-heisenberg-ion"
version = "0.1.0"
requires-python = ">=3.12"
readme = "README.md"
license = { text = "Apache 2.0" }
keywords = ["quantum", "computing", "qmc", "ed", "atomic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research ",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
]
[project.optional-dependencies]
docs = [
"pymdown-extensions",
"mkdocstrings",
"mkdocs-material",
"mkdocstrings-python",
"mdx_truly_sane_lists",
]
tests = ["pytest"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["oqd_heisenberg_ion*"]
[tool.setuptools.package-data]
"oqd_heisenberg_ion" = [
"simulators/ed/engine.jl",
"simulators/qmc/long_range/engine/*"
]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[dependency-groups]
dev = ["jupyter>=1.1.1", "ruff>=0.9.6"]
[project.scripts]
oqd-heisenberg-ion = "oqd_heisenberg_ion.interface.main:main"
[project.urls]
Homepage = "https://github.com/OpenQuantumDesign/Heisenberg_Ion"
Repository = "https://github.com/OpenQuantumDesign/Heisenberg_Ion"