-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (48 loc) · 1.27 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qiskit-symb"
version = "0.3.0"
description = "Symbolic evaluation of parameterized quantum circuits in Qiskit"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [
{name = "Simone Gasperini", email = "simone.gasperini4@unibo.it"}
]
keywords = [
"quantum-computing",
"symbolic-computation",
"qiskit",
"sympy",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dynamic = ["readme", "dependencies"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pylint]
disable = [
"cyclic-import",
"import-outside-toplevel",
"no-member",
"protected-access",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-locals",
"too-many-ancestors",
"redefined-builtin",
"invalid-name",
"no-value-for-parameter",
"abstract-method",
"signature-differs",
"duplicate-code",
]