forked from SatvikNema/rest-db-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 1.02 KB
/
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
35
36
37
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rest-db-api"
version = "0.0.3"
description = "A rest db api designed to be integrated with apache superset"
authors = [
{ name="Satvik Nema", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["rest", "dbapi", "sqlalchemy", "adapter", "superset"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"SQLAlchemy<=1.4.39",
"shillelagh",
"requests-cache",
"jsonpath-python",
"sqlglot>=20"
]
[project.entry-points."shillelagh.adapter"]
myrestadapter = "rest_db_api.rest_api_adapter:RestAdapter"
[project.entry-points."sqlalchemy.dialects"]
rest = "rest_db_api.rest_api_dialect:RestApiDialect"
[project.urls]
"Homepage" = "https://github.com/SatvikNema/rest-db-api"
"Bug Tracker" = "https://github.com/SatvikNema/rest-db-api/issues"