2024-08-08 17:53:45 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "anaxi"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Anaxi is Superhog's tool to perform Extract-Load (EL) syncs between Cosmos DB databases and our DWH."
|
|
|
|
|
authors = ["Pablo Martin <pablo.martin@superhog.com>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.10"
|
2024-08-08 18:10:24 +02:00
|
|
|
pyfiglet = "^1.0.2"
|
|
|
|
|
click = "^8.1.7"
|
2024-08-09 12:41:23 +02:00
|
|
|
python-dotenv = "^1.0.1"
|
|
|
|
|
pyyaml = "^6.0.2"
|
|
|
|
|
azure-cosmos = "^4.7.0"
|
2024-08-09 14:45:10 +02:00
|
|
|
psycopg2-binary = "^2.9.9"
|
2024-08-08 17:53:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-08-08 18:10:24 +02:00
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
anaxi = "anaxi.cli:cli"
|