Files
beanflows/pyproject.toml
2025-07-26 21:10:02 +02:00

41 lines
609 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",
]
[dependency-groups]
exploration = [
"ipykernel>=6.29.5",
]
dev = [
"pre-commit>=4.1.0",
"ruff>=0.9.9",
]
[tool.uv.sources]
psdonline = {workspace = true }
[tool.uv.workspace]
members = [
"extract/*",
"load/*",
"transform/*",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"