-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "ampere"
version = "0.1.0"
description = ""
authors = ["Jeff Brennan <jeffbrennan10@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11, <3.13"
python-dotenv = "^1.0.1"
sqlmodel = "^0.0.22"
requests = "^2.32.3"
ruff-lsp = "^0.0.56"
pyright = "^1.1.380"
polars = "^1.7.1"
deltalake = "^0.22.3"
pandas = "^2.2.2"
dagster = "^1.8.7"
dagster-webserver = "^1.8.7"
matplotlib = "^3.9.2"
plotly = "^5.24.1"
kaleido = "0.2.1"
jupyter = "^1.1.1"
scipy = "^1.14.1"
dash = "^2.18.1"
dash-bootstrap-components = "^1.6.0"
dash-breakpoints = "^0.1.0"
colorlover = "^0.3.0"
google-cloud-bigquery = "^3.26.0"
db-dtypes = "^1.3.0"
sqlfluff = "^3.2.5"
dagster-dbt = "^0.25.3"
dbt-duckdb = "^1.9.0"
typer = "^0.15.1"
pypalettes = "^0.1.4"
gunicorn = "^23.0.0"
orjson = "^3.10.13"
flask-caching = "^2.3.0"
flask-compress = "^1.17"
shandy-sqlfmt = { extras = ["jinjafmt"], version = "^0.24.0" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 90
[tool.ruff.lint]
select = ["I"]
[tool.dagster]
code_location_name = "ampere/dagster"
module_name = "ampere.dagster.definitions"
[tool.sqlfmt]
exclude = ["target/**/*", "dbt_packages/**/*"]
line_length = 90