-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 917 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs_sql"
version = "0.2.2"
authors = [
{ name = "Vishal Gandhi", email = "[email protected]" }
]
description = "A MkDocs plugin for executing and displaying SQL queries"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: MkDocs",
"Topic :: Documentation",
]
dependencies = [
"mkdocs>=1.6.1",
"pandas>=2.2.3",
"tabulate>=0.9.0",
"pyyaml>=6.0.2"
]
[project.urls]
Homepage = "https://github.com/ivishalgandhi/mkdocs-sql"
Repository = "https://github.com/ivishalgandhi/mkdocs-sql"
Issues = "https://github.com/ivishalgandhi/mkdocs-sql/issues"
[project.entry-points."mkdocs.plugins"]
sql = "mkdocs_sql.plugin:SQLPlugin"