-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (56 loc) · 1.63 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
[project]
name = "pyplanqk"
authors = [{ name = "Henning Krause", email = "[email protected]" }, ]
maintainers = [{ name = "Henning Krause", email = "[email protected]" }, ]
description = "A python package to interact with the PlanQK platform."
readme = "README.md"
keywords = ["quantum", "quantum computing", "planqk"]
license = { text = "apache-2.0" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'License :: OSI Approved :: Apache Software License'
]
dependencies = [
"numpy>=1.26.4",
"requests>=2.31.0",
"python-dateutil>=2.8.2",
"urllib3>=2.2.0",
"names-generator>=0.1.0",
"python-dotenv>=1.0.1"
]
requires-python = ">=3.10.6"
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black>=23.11.0",
"pylint>=3.0.3",
"pytest>=8.0.0",
"mkdocs>=1.5.2",
"write-the>=0.10.1",
"mkdocs-material>=9.5.10",
"mkdocstrings>=0.24.0",
"mkdocstrings-python>=1.8.0",
"mkdocs-git-committers-plugin-2>=2.2.3",
"mkdocs-git-revision-date-localized-plugin>=1.2.4"
]
[project.urls]
Homepage = "https://planqk.de/"
[tool.black]
line-length = 121
[tool.pylint]
max-line-length = 121
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
version_file = "src/pyplanqk/version.py"
[tool.pytest.ini_options]
markers = [
"interactive: only run tests with user interaction",
"slow_service: only run tests wich are slow because of the service creation",
"auto: only run tests that run fully automatic",
]
log_cli = true
log_cli_level = "INFO"