-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 857 Bytes
/
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
[tool.dagster]
module_name = "mormon_queer_analysis"
[tool.poetry]
name = "mormon-queer-analysis"
version = "0.1.0"
description = "Analysis of LDS reddit discourse on homosexuality over the last few decades"
authors = ["Joe Koch <[email protected]>"]
license = "Apache 2.0 License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
dagster = "^1.6.1"
dagster-cloud = "^1.6.1"
dagster-webserver = "^1.6.1"
matplotlib = "*"
openai = "^1.9.0"
pandas = "*"
plotly = "*"
requests = "*"
scikit-learn = "^1.4.0"
tenacity = "*"
tiktoken = "^0.5.2"
backoff = "^2.2.1"
notebook = "^7.1.0"
dagster-duckdb = "^0.22.5"
dagster-duckdb-pandas = "^0.22.5"
dagster-dbt = "^0.22.6"
dbt-duckdb = "^1.7.2"
[tool.poetry.group.dev.dependencies]
black = "*"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"