23 lines
467 B
TOML
23 lines
467 B
TOML
[tool.poetry]
|
|
name = "destination-duckdb"
|
|
version = "0.3.0"
|
|
description = "Destination implementation for Duckdb."
|
|
authors = ["Simon Späti, Airbyte"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8"
|
|
airbyte-cdk = "^0.51.6"
|
|
duckdb = "0.9.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.0"
|
|
ruff = "^0.0.286"
|
|
black = "^23.7.0"
|
|
mypy = "^1.5.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|