52 lines
872 B
TOML
52 lines
872 B
TOML
[project]
|
|
name = "materia"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Deeman", email = "hendrik.note@gmail.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pyarrow>=20.0.0",
|
|
"python-dotenv>=1.1.0",
|
|
"typer>=0.15.0",
|
|
"hcloud>=2.3.0",
|
|
"paramiko>=3.5.0",
|
|
"pyyaml>=6.0.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
materia = "materia.cli:app"
|
|
|
|
|
|
[dependency-groups]
|
|
exploration = [
|
|
"ipykernel>=6.29.5",
|
|
]
|
|
|
|
dev = [
|
|
"pre-commit>=4.1.0",
|
|
"pulumi>=3.202.0",
|
|
"pulumi-cloudflare>=6.10.0",
|
|
"pulumi-hcloud>=1.25.0",
|
|
"pyyaml>=6.0.2",
|
|
"ruff>=0.9.9",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
psdonline = {workspace = true }
|
|
sqlmesh_materia = {workspace = true }
|
|
|
|
[tool.uv.workspace]
|
|
members = [
|
|
"extract/*",
|
|
"transform/*",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
|