-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 892 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "altimate-engine"
version = "0.4.0"
description = "Python engine for Altimate CLI - lineage, SQL execution, dbt integration"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0",
"pyyaml>=6.0",
"altimate-core>=0.1.0",
]
[project.optional-dependencies]
warehouses = [
"psycopg2-binary>=2.9",
"snowflake-connector-python>=3.0",
"duckdb>=0.9",
"cryptography>=41.0",
"google-cloud-bigquery>=3.0",
"databricks-sql-connector>=3.0",
"boto3>=1.28",
"mysql-connector-python>=8.0",
"pyodbc>=5.0",
]
security = ["keyring>=24.0"]
docker = ["docker>=7.0"]
tunneling = ["sshtunnel>=0.4", "paramiko>=3.0"]
dev = ["pytest>=7.0", "ruff>=0.1"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
packages = ["src/altimate_engine"]