-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "query-explain-buddy"
version = "0.1.0"
description = "Compile SQLAlchemy statements to real SQL, run EXPLAIN ANALYZE, and annotate the query plan with plain-English, actionable notes."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "async-workflows" }]
keywords = [
"sqlalchemy",
"postgresql",
"sqlite",
"explain",
"explain-analyze",
"query-plan",
"database",
"orm",
"performance",
"index",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["sqlalchemy>=2.0"]
[project.optional-dependencies]
pretty = ["rich>=13"]
test = ["pytest>=8", "pytest-asyncio>=0.23", "aiosqlite>=0.19"]
[project.urls]
Homepage = "https://github.com/async-workflows/query-explain-buddy"
Documentation = "https://www.async-workflows.com"
Issues = "https://github.com/async-workflows/query-explain-buddy/issues"
[project.scripts]
query-explain-buddy = "query_explain_buddy.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/query_explain_buddy"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]