-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (52 loc) · 1.45 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
[project]
name = "teamster"
version = "0.1.0"
description = ""
authors = [
{ name = "Charlie Bini", email = "[email protected]" },
]
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.12,<3.13"
dependencies = [
"dagster>=1.9,<1.10",
"dagster-airbyte",
"dagster-cloud",
"dagster-dbt",
"dagster-fivetran",
"dagster-gcp",
"dagster-k8s",
"dagster-slack",
"dagster-ssh",
"dagster-embedded-elt",
"dbt-bigquery>=1.8,<1.9",
"dbt-core>=1.8,<1.9",
"beautifulsoup4>=4.12.2",
"cmake>=3.28.1",
"cramjam>=2.7.0",
"fastavro>=1.9.0",
"gspread>=5.12.0",
"ldap3>=2.9.1",
"oracledb>=1.4.2",
"psycopg[binary,pool]>=3.2.3",
"py-avro-schema>=3.4.1",
"pycryptodome>=3.19.0",
"pypdf>=5.0.0",
"python-dateutil>=2.9.0.post0",
"scikit-learn>=1.4.0",
"tableauserverclient>=0.25",
"tenacity>=8.2.3",
]
[dependency-groups]
dev = ["dagster-webserver", "pytest", "datamodel-code-generator"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/teamster"]
[tool.dagster]
project_name = "teamster"
[tool.pdm.scripts]
dagster-dev = { shell = "bash .pdm/scripts/dagster-dev.sh", help = "Validate Dagster imports and configs" }
dbt-sxs = { shell = "pdm run bash .pdm/scripts/dbt-stage-external-sources.sh" }
json2py = { shell = "bash .pdm/scripts/json2py.sh" }
op-inject = { shell = "op inject -f --in-file=.devcontainer/tpl/.env.tpl --out-file=env/.env" }