-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (72 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (72 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
[project]
name = "orpheus_engine"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
# Core Dagster packages on 1.13.x versioning
# (>=1.13.1 fixes GHSA-mjw2-v2hm-wj34 SQL injection in DB I/O managers)
"dagster>=1.13.1,<1.14.0",
"dagster-cloud>=1.13.1,<1.14.0",
"dagster-webserver>=1.13.1,<1.14.0",
# Dagster extension packages on 0.29.x versioning (matches core 1.13.x)
"dagster-postgres>=0.29.1,<0.30.0",
"dagster-aws>=0.29.1,<0.30.0",
"dagster-docker>=0.29.1,<0.30.0",
"dagster-dlt>=0.29.1,<0.30.0",
"dagster-sling>=0.29.1,<0.30.0",
"dagster-dbt>=0.29.1,<0.30.0",
"dagster-embedded-elt>=0.29.1,<0.30.0",
# Non-dagster dependencies
"psycopg2-binary",
"python-dotenv",
"polars[all]",
"requests",
"dlt[postgres]",
"googlemaps",
"litellm>=1.66.1",
"pyairtable",
"dbt-core>=1.7.0,<2.0.0",
"dbt-postgres>=1.7.0,<2.0.0",
"PyYAML",
"jupyter>=1.1.1",
"pandas>=2.2.3",
"connectorx>=0.3.3",
"pyod>=2.0.5",
"scikit-learn>=1.6.1",
"joblib>=1.5.0",
"scipy>=1.13.1",
"tqdm>=4.67.1",
"python-rapidjson>=1.20",
"tldextract>=5.3.0",
"metaod>=0.0.2",
"seaborn>=0.13.2",
"openai>=1.75.0",
"pydantic>=2.11.3",
"aiohttp>=3.11.16",
"boto3",
"beautifulsoup4>=4.12.0",
"pypandoc-binary>=1.13",
"duckdb>=1.0.0",
# Security: CVE fix for TOCTOU symlink vulnerability
"filelock>=3.20.3",
# Security: GHSA-5rjg-fvgr-3xxf path traversal fix (>=78.1.1); capped <81
# because setuptools 81 removed pkg_resources, which dlt imports at runtime.
"setuptools>=78.1.1,<81",
]
[project.optional-dependencies]
dev = [
"pytest",
"jupyter",
"ipykernel",
"notebook",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.dagster]
module_name = "orpheus_engine.definitions"
code_location_name = "orpheus_engine"
[tool.setuptools.packages.find]
exclude=["orpheus_engine_tests"]