-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["scripts*"]
[project]
name = "stables-analytics"
version = "0.1.0"
description = "Stablecoins Analytics Pipeline"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"confluent-kafka>=2.6.1",
"dbt-core>=1.10.13",
"dbt-postgres>=1.9.1",
"dbt-snowflake>=1.10.2",
"dlt[postgres]>=1.17.0",
"hypersync>=0.8.5",
"jupyter>=1.1.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.22",
"pandas>=2.3.3",
"polars>=1.33.1",
# psycopg is provided by dlt[postgres] and dbt-postgres (psycopg2-binary)
# Explicitly installing psycopg v3 causes conflicts with dbt-postgres
"pyarrow>=21.0.0",
"python-dotenv>=1.0.0",
"requests>=2.32.0",
"rich>=13.6.0",
"snowflake-connector-python>=3.17.4",
"sqlalchemy>=2.0.43",
"langfuse>=2.59.5",
"langchain>=1.2.6",
"langchain-openai>=1.1.7",
"langchain-core>=1.2.7",
"langgraph>=1.0.7",
"langchain-tavily>=0.2.17",
"langchain-experimental>=0.4.1",
"qdrant-client>=1.16.2",
"psycopg>=3.3.2",
"matplotlib>=3.10.8",
"snowflake-core>=1.11.0",
"snowflake-snowpark-python>=1.44.0",
]
[project.scripts]
kafka-init-schema = "scripts.kafka.init_kafka_schema:init_schema"
kafka-producer = "scripts.kafka.producer:main"
kafka-consumer = "scripts.kafka.consumer:main"
[dependency-groups]
dev = ["sqlfluff>=3.5.0", "sqlfluff-templater-dbt>=3.5.0"]
[tool.uv]
package = true
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]