-
Notifications
You must be signed in to change notification settings - Fork 111
/
pyproject.toml
106 lines (95 loc) · 2.16 KB
/
pyproject.toml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[project]
name = "quimb"
description = "Quantum information and many-body library."
readme = { file = "README.md", content-type = "text/markdown" }
dynamic = ["version"]
authors = [{ name = "Johnnie Gray", email = "[email protected]" }]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"quantum",
"physics",
"tensor",
"networks",
"tensors",
"dmrg",
"tebd",
"mera",
"peps",
]
requires-python = ">=3.9"
dependencies = [
"autoray >=0.6.12",
"cotengra >=0.6.1",
"cytoolz >=0.8.0",
"numba >=0.39",
"numpy >=1.17",
"psutil >=4.3.1",
"scipy >=1.0.0",
"tqdm >=4",
]
[project.optional-dependencies]
tensor = [
"matplotlib>=2.0",
"networkx>=2.3"
]
advanced_solvers = [
"mpi4py",
"petsc4py",
"slepc4py"
]
tests = [
"coverage",
"pytest",
"pytest-cov"
]
docs = [
"astroid<3.0.0",
"autoray>=0.6.12",
"cotengra>=0.6.1",
"doc2dash>=2.4.1",
"furo",
"ipython!=8.7.0",
"myst-nb",
"setuptools_scm",
"sphinx-autoapi",
"sphinx-copybutton",
"sphinx-design",
"sphinx>=2.0",
]
[project.urls]
"Documentation" = "https://quimb.readthedocs.io/"
"Repository" = "https://github.com/jcmgray/quimb/"
"Issues" = "https://github.com/jcmgray/quimb/issues"
"Changelog" = "https://quimb.readthedocs.io/en/latest/changelog.html"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "quimb/_version.py"
[tool.pytest.ini_options]
testpaths = "tests"
filterwarnings = "once"
[tool.coverage.run]
omit = ["*/quimb/experimental/*"]
source = ["quimb"]
[tool.pylama]
ignore = "C901"
max_line_length = 79
[tool.ruff]
line-length = 79
target-version = "py39"
lint.ignore = ["E741"]
[tool.black]
line-length = 79
target-version = ['py39']