-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "sqlrooms-cli"
dynamic = ["version"]
description = "CLI to launch the SQLRooms AI app with a DuckDB websocket server."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "SQLRooms Contributors" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"duckdb>=1.4.0,<1.5.0",
"fastapi>=0.115.0",
"jinja2>=3.1.0",
"pyarrow>=17.0.0",
"python-multipart>=0.0.9",
"sqlrooms-server>=0.1.0",
"tomli>=2.0.0; python_version < '3.11'",
"tomlkit>=0.13.0",
"typer>=0.12.5",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
postgres = ["psycopg[binary]>=3.2.0"]
snowflake = ["snowflake-connector-python>=4.3.0"]
connectors = ["psycopg[binary]>=3.2.0", "snowflake-connector-python>=4.3.0"]
[project.urls]
homepage = "https://sqlrooms.com"
repository = "https://github.com/sqlrooms/sqlrooms"
[project.scripts]
sqlrooms = "sqlrooms.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"httpx",
"ruff",
]
[tool.uv.sources]
sqlrooms-server = { workspace = true }
[tool.hatch.build.targets.wheel]
packages = ["sqlrooms"]
[tool.hatch.build]
artifacts = ["sqlrooms/web/static/**"]
[tool.hatch.build.targets.sdist]
include = ["README.md", "LICENSE", "sqlrooms"]
[tool.hatch.version]
path = "package.json"
pattern = "\"version\": \"(?P<version>.+?)\""