-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (55 loc) · 1.44 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
59
60
61
62
63
64
65
66
[tool.poetry]
name = "Splicing"
version = "0.0.1"
description = "Splicing is an open-source AI copilot designed to simplify data pipeline building for both data engineers and non-technical users."
authors = ["Splicing Team <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/splicing-ai/splicing"
packages = [
{ include = "splicing" }
]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = ">=0.110.0,<1"
uvicorn = ">=0.30.0,<1"
pydantic = "^2.0"
pydantic-settings = "^2.0"
datamodel-code-generator = ">=0.20.0"
redis = ">=4.2.0rc1"
pandas = "^2.0"
pyarrow = ">=15.0"
langchain-core = "^0.3.0"
langchain-openai = "^0.2.0"
langchain-anthropic = "^0.2.0"
langgraph = ">=0.2.20,<0.3"
dbt-core = "^1.6.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
pytest = "*"
pytest-asyncio = "*"
fakeredis = "*"
mkdocs = "^1.5.0"
mkdocs-material = "^9.0"
[tool.poetry.group.aws]
optional = true
[tool.poetry.group.aws.dependencies]
boto3 = "^1.0"
[tool.poetry.group.duckdb]
optional = true
[tool.poetry.group.duckdb.dependencies]
duckdb = "^1.0"
dbt-duckdb = "^1.0"
[tool.poetry.group.gcp]
optional = true
[tool.poetry.group.gcp.dependencies]
google-cloud-bigquery = "^3.0"
dbt-bigquery = "^1.0"
db-dtypes = "^1.0"
[tool.poetry.scripts]
generate-schema = "splicing.backend.generate_schema:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"