forked from qleroy/shillelagh-gristapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 870 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "shillelagh-gristapi"
version = "0.0.6"
dependencies = ["requests >=2.31.0", "shillelagh >=1.2.6"]
authors = [{ name = "Quentin Leroy", email = "quentin.n.leroy@gmail.com" }]
description = "Shillelagh adapter for querying Grist Documents."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/qleroy/shillelagh-gristapi"
Issues = "https://github.com/qleroy/shillelagh-gristapi/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["shillelagh_gristapi*"]
namespaces = false
[project.entry-points."shillelagh.adapter"]
gristapi = "shillelagh_gristapi.grist:GristAPI"