forked from qubrabench/qubrabench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.68 KB
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"]
build-backend = "setuptools.build_meta"
[project]
name = "qubrabench"
authors = [
{ name = "Tim Bittner", email = "tim.bittner@kit.edu" },
{ name = "Luke Southall", email = "luke.southall@student.kit.edu" },
{ name = "Michael Walter", email = "michael.walter@rub.de" },
{ name = "Luca Witt", email = "luca.witt@rub.de" },
{ name = "Anurudh Peduri", email = "anurudh.peduri@rub.de" },
]
description = "QuBRA Benchmarking Framework"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"click~=8.1",
"pandas~=2.0",
"matplotlib~=3.7",
"numpy~=1.24",
"scipy~=1.10",
"networkx~=3.1",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/qubrabench/qubrabench"
"Bug Tracker" = "https://github.com/qubrabench/qubrabench/issues"
# [project.scripts]
# my-script = "my_package.module:function"
[project.optional-dependencies]
dev = [
"black",
"pytest~=7.3",
"mypy~=1.2",
"pandas-stubs~=2.0",
"networkx-stubs~=0.0",
"ruff~=0.0",
"sphinx~=7.0.1",
"sphinxcontrib-napoleon~=0.7",
]
[tool.setuptools.dynamic]
version = { attr = "qubrabench.__version__" }
[tool.setuptools.packages.find]
include = ["qubrabench"]
[tool.pytest.ini_options]
markers = []
[tool.ruff]
line-length = 100000 # 88 enforced by black, ignore for comments.
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
[tool.pyright]
include = ["qubrabench", "tests", "tests", "examples"]
reportMissingImports = true
reportMissingTypeStubs = true
pythonVersion = "3.10"