-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
103 lines (93 loc) · 2.47 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "filter_functions"
description = "Package for efficient calculation of generalized filter functions"
readme = "README.md"
requires_python = ">= 3.9"
license = {file = "LICENSE"}
dynamic = ["version"]
authors = [
{name = "Tobias Hangleiter", email = "tobias.hangleiter@rwth-aachen.de"},
{name = "Quantum Technology Group, RWTH Aachen University"},
]
classifiers = [
"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",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = ["physics", "numerics", "quantum information", "quantum computing", "noise"]
dependencies = [
"numpy",
"scipy",
"opt_einsum",
"sparse",
"tqdm",
]
[project.optional-dependencies]
plotting = ["matplotlib"]
bloch_sphere_visualization = [
"filter_functions[plotting]",
"qutip",
]
doc = [
"jupyter",
"nbsphinx",
"numpydoc",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc",
"ipympl",
"qutip-qip",
"qutip-qtrl",
"numpy<2"
]
tests = [
"pytest >= 4.6",
"pytest-cov",
"codecov"
]
all = [
"filter_functions[plotting]",
"filter_functions[bloch_sphere_visualization]",
"filter_functions[doc]",
"filter_functions[tests]",
]
[project.urls]
Source = "https://github.com/qutech/filter_functions"
Documentation = "https://filter-functions.readthedocs.io/en/latest/"
Homepage = "https://www.quantuminfo.physik.rwth-aachen.de/cms/Quantuminfo/Forschung/Quantum-Technology-Group/~zcsx/code/lidx/1/"
[tool.hatch.version]
path = "filter_functions/__init__.py"
[tool.hatch.envs.tests]
features = ["tests"]
[tool.hatch.envs.tests.scripts]
run = ["python -m pytest"]
[tool.hatch.envs.doc]
features = [
"doc",
]
[tool.hatch.envs.doc.scripts]
build = [
"sphinx-build -b html doc/source public"
]
[tool.pytest.ini_options]
minversion = "4.6"
addopts = "-ra --verbose --cov=filter_functions --cov-report=xml"
testpaths = [
"tests"
]
[tool.coverage.run]
branch = true
omit = ["tests/*", "*/__init__.py"]
[tool.pylint.'MESSAGES CONTROL']
disable = "E123,E226,W504"
[tool.pylint.FORMAT]
# Maximum number of characters on a single line.
max-line-length = 99