-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (57 loc) · 1.46 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
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[project]
name = "qiskit-quimb"
description = "Simulate Qiskit circuits using quimb"
version = "0.0.6.dev"
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["qiskit", "quimb >= 1.9"]
[project.optional-dependencies]
dev = [
"coverage",
"mypy",
"myst-parser",
"nbmake",
"nbsphinx",
"pytest",
"qiskit[visualization]",
"qiskit-sphinx-theme",
"ruff",
"sphinx",
"sphinx-autodoc-typehints",
]
docs = ["kahypar"]
[project.urls]
Homepage = "https://github.com/qiskit-community/qiskit-quimb"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
files = ["src/**/*.py", "tests/**/*.py"]
[tool.ruff]
include = [
"pyproject.toml",
"src/**/*.py",
"src/**/*.pyi",
"tests/**/*.py",
"tests/**/*.pyi",
"docs/**/*.py",
"docs/**/*.pyi",
"docs/**/*.ipynb",
]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "NPY"]