-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.51 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
[build-system]
requires = ["setuptools>=59"]
build-backend = "setuptools.build_meta"
[project]
name = "pg_plan_alternatives"
description = "An eBPF-based tool to show all query plans considered by PostgreSQL during query planning"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
license-files = [
"LICENSE",
]
authors = [
{ name = "Jan Nidzwetzki", email = "jnidzwetzki@gmx.de" },
]
keywords = ["postgresql", "postgres", "ebpf", "query-planning", "optimizer"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Software Development :: Debuggers"
]
dependencies = [
"graphviz",
"psycopg2-binary>=2.9", # required dependency for OID resolution
"pyelftools>=0.31",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/jnidzwetzki/pg_plan_alternatives"
"Bug Tracker" = "https://github.com/jnidzwetzki/pg_plan_alternatives/issues"
[project.scripts]
pg_plan_alternatives = "pg_plan_alternatives.pg_plan_alternatives:main"
visualize_plan_graph = "pg_plan_alternatives.visualize_plan_graph:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"pg_plan_alternatives.bpf" = ["*.c"]
[tool.setuptools.dynamic]
version = { attr = "pg_plan_alternatives.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests/"]
addopts = [
"--verbose",
"--ignore-glob=**/_*.py",
]