-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
92 lines (85 loc) · 2.22 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
[project]
name = "mqt.ion-shuttler"
description = "A solver for the shuttling problem in QCCD quantum computers"
readme = "README.md"
authors = [
{ name = "Daniel Schönberger", email = "[email protected]"}
]
keywords = ["MQT", "quantum computing", "design automatin", "shuttling", "sat solver"]
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"z3-solver==4.12.1.0",
"matplotlib==3.7.1",
"networkx==3.0",
"qiskit==1.0.0",
"more_itertools==10.1.0",
"setuptools>=58.0.0"
]
version = "0.1"
[tool.ruff]
select = [
"E", "F", "W", # flake8
"A", # flake8-builtins
"ARG", # flake8-unused-arguments
"B", "B904", # flake8-bugbear
"C4", # flake8-comprehensions
"EM", # flake8-errmsg
"EXE", # flake8-executable
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
"N", # flake8-naming
"PGH", # pygrep-hooks
"PIE", # flake8-pie
"PL", # pylint
"PT", # flake8-pytest-style
"PTH", # flake8-use-pathlib
"PYI", # flake8-pyi
"Q", # flake8-quotes
"RET", # flake8-return
"RSE", # flake8-raise
"RUF", # Ruff-specific
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"TRY", # tryceratops
"UP", # pyupgrade
"YTT", # flake8-2020
]
ignore = [
"E501", # Line too long (Black is enough)
"PLR2004", # Magic values
"PLR0913", # Too many arguments
"PLR0912", # Too many branches
"SIM105", # Use `contextlib.suppress(ValueError)` instead of try-except-pass
]
target-version = "py38"
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"extern",
]
line-length = 120
[tool.black]
line-length = 120
[tool.setuptools]
py-modules = []