-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.49 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
[tool.poetry]
name = "migration_accelerator_package"
version = "0.0.1"
description = "Reusable python logic for Snowflake - Databricks Migration."
authors = ["Samuel Solarte samuel.solarte@qubika.com"]
packages = [
{ include = "migration_accelerator_package", from = "src" },
{ include = "artifact_translation_package", from = "src" },
{ include = "migration_report_package", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
requests = ">=2.31.0"
snowflake-connector-python = ">=3.0.0"
snowflake-snowpark-python = ">=1.9.0"
python-dotenv = ">=1.0.0"
databricks-sdk = "*"
langchain = ">=0.1.0"
langchain-core = ">=0.1.0"
langchain-community = ">=0.1.0"
langgraph = ">=0.1.0"
databricks-langchain = ">=0.1.0"
sqlglot = ">=20.0.0"
pydantic = ">=2.0.0"
typing_extensions = ">=4.15.0"
mlflow = ">=2.10.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.0.0"
pytest-cov = ">=4.0.0"
pytest-asyncio = ">=0.21.0"
notebook = ">=6.5.0"
ipykernel = ">=6.25.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
migration-accelerator = "migration_accelerator_package.main:main"
migration-report = "migration_report_package.main:main"
snowpark-reader = "migration_accelerator_package.snowpark:main"
snowflake-validator = "migration_accelerator_package.ingestion_validation:main"
grant-transformer = "migration_accelerator_package.grant_transformation:main"
translation-module = "artifact_translation_package.databricks_job:databricks_entrypoint"