forked from Epithumia/mkdocs-sqlite-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 1.43 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-sqlite-console"
authors = [
{ name = "Rafael Lopez", email = "rafael.lopez@universite-paris-saclay.fr" },
{ name = "Frédéric Zinelli", email = "frederic.zinelli@gmail.com"}
]
description = "Mkdocs-SQLite-Console est un plugin pour MkDocs, qui permet d'afficher un IDE SQL (SQLite) permettant d'exécuter du code."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["mkdocs", "sql", "sqlite"]
license = { text = "MIT" }
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
dependencies = ["mkdocs>=1.0.4"]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["mkdocs>=1.0.4", "mkdocs-material>=6.0.0"]
[project.urls]
documentation = "https://epithumia.github.io/mkdocs-sqlite-console/"
source = "https://github.com/Epithumia/mkdocs-sqlite-console"
[tool.setuptools]
packages = ["mkdocs_sqlite_console"]
[tool.setuptools.dynamic]
version = { attr = "mkdocs_sqlite_console.VERSION" }
[project.entry-points."mkdocs.plugins"]
sqlite-console = "mkdocs_sqlite_console:SQLiteConsole"