-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.34 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
[project]
name = "panoctagon"
version = "0.1.0"
description = ""
requires-python = ">=3.12,<3.13"
readme = "readme.md"
dependencies = [
"polars==1.37.1",
"requests==2.32.5",
"lxml==6.0.2",
"bs4==0.0.2",
"adbc-driver-manager==1.10.0",
"pyarrow==23.0.0",
"pyright==1.1.408",
"ruff-lsp==0.0.62",
"pytest==9.0.2",
"pydantic==2.12.5",
"sqlmodel==0.0.31",
"dash==3.4.0",
"dash-mantine-components==2.4.1",
"plotly==6.5.2",
"pandas==3.0.0",
"shandy-sqlfmt[jinjafmt]==0.29.0",
"statsmodels==0.14.6",
"dbt-core==1.11.2",
"dagster==1.12.12",
"dagster-webserver==1.12.12",
"dagster-dbt==0.28.12",
"typer<=0.17",
"gunicorn==24.1.1",
"duckdb==1.1.0",
"duckdb-engine==0.13.2",
"dbt-duckdb==1.9.0",
"dagster-dg-cli>=1.12.12",
"networkx==3.4.2",
"fastapi==0.115.12",
"uvicorn==0.34.2",
"httpx==0.28.1",
"questionary>=2.1.1",
"rich==14.0.0",
"python-dotenv>=1.0.1,<2",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
ignore = [ "dbt_packages" ]
[project.scripts]
panoctagon = "panoctagon.app:app"
admin = "panoctagon.admin:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.dg]
directory_type = "project"
[tool.dg.project]
root_module = "panoctagon.dagster"
[tool.ruff]
line-length = 100