This repository was archived by the owner on Apr 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tycoon"
version = "0.1.0"
description = "Database Tycoon — local-first analytics CLI that adapts to your existing data stack"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Database Tycoon Team"}]
requires-python = ">=3.12"
keywords = ["data", "analytics", "duckdb", "dbt", "dlt", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
]
dependencies = [
"typer==0.24.1",
"rich==14.3.3",
"dbt-core==1.11.8",
"dbt-duckdb==1.10.1",
"dlt[duckdb]==1.24.0",
"duckdb==1.5.1",
"httpx==0.28.1",
"pyyaml==6.0.3",
"pydantic==2.12.5",
]
[project.optional-dependencies]
server = [
"fastapi==0.135.3",
"uvicorn[standard]==0.44.0",
"websockets==16.0",
]
dagster = [
"dagster==1.12.20",
"dagster-webserver==1.12.20",
"dagster-dbt==0.28.20",
"dagster-dlt==0.28.20",
]
ask = [
"nao-core==0.0.59",
"ibis-framework[duckdb]==12.0.0",
]
[project.urls]
Homepage = "https://github.com/Database-Tycoon/localhost-stack"
Repository = "https://github.com/Database-Tycoon/localhost-stack"
Issues = "https://github.com/Database-Tycoon/localhost-stack/issues"
[dependency-groups]
dev = ["pytest==9.0.2"]
[project.scripts]
tycoon = "tycoon.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/tycoon"]
[tool.uv]
prerelease = "if-necessary-or-explicit"