-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 821 Bytes
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
[tool.black]
line-length = 120
[project]
version = "1.0.0"
name = "py-sql-bencher"
readme = "README.md"
description = "CLI tool to compare performance of SQL queries."
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [{ name = "THION Romuald", email = "romuald.thion@univ-lyon1.fr" }]
keywords = ["posqtgres", "sql", "bench", "performance", "cli"]
dependencies = [
"python-dotenv",
"psycopg",
"psycopg_pool",
"tqdm",
"scipy",
"pandas",
"seaborn",
"pglast",
]
[project.urls]
Homepage = "https://github.com/romulusFR/py-sql-bencher"
Documentation = "https://github.com/romulusFR/py-sql-bencher"
Repository = "https://github.com/romulusFR/py-sql-bencher"
Changelog = "https://github.com/romulusFR/py-sql-bencher"
[project.scripts]
py-sql-bencher = "py_sql_bencher:main"