-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
116 lines (105 loc) · 3.02 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
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=7"
]
build-backend = "setuptools.build_meta"
[project]
name = "mqt.quditcompression"
description = "Compression of Qubit Circuits: Mapping to Mixed-Dimensional Quantum Systems"
readme = "README.md"
authors = [
{ name = "Kevin Mato", email = "[email protected]"},
{ name = "Stefan Hillmich", email = "[email protected]"},
{ name = "Robert Wille", email = "[email protected]"}
]
keywords = ["MQT", "quantum computing", "design automation", "quantum circuit compression", "qudits"]
license = { file = "LICENSE" }
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
requires-python = ">=3.8"
dependencies = [
"networkx==3.1",
"pandas==2.0.2",
"qiskit==0.43.1"
]
dynamic = ["version"]
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/cda-tum/mqt-qudit-compression"
Discussions = "https://github.com/cda-tum/mqt-qudit-compression/discussions"
Research = "https://www.cda.cit.tum.de/research/"
[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
]
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