-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 797 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dbcli"
version = "0.1.0"
description = "Database CLI for AI agents — stateless, token-efficient, multi-database"
requires-python = ">=3.9"
dependencies = ["click>=8.0"]
[project.optional-dependencies]
postgres = ["psycopg2-binary>=2.9"]
mysql = ["mysql-connector-python>=8.0"]
mariadb = ["mariadb>=1.1"]
duckdb = ["duckdb>=0.9"]
clickhouse = ["clickhouse-connect>=0.7"]
sqlserver = ["pymssql>=2.2"]
all = [
"psycopg2-binary>=2.9",
"mysql-connector-python>=8.0",
"mariadb>=1.1",
"duckdb>=0.9",
"clickhouse-connect>=0.7",
"pymssql>=2.2",
]
dev = ["pytest>=7.0"]
[tool.setuptools.packages.find]
include = ["dbcli*"]
[project.scripts]
dbcli = "dbcli.cli:cli"