Files
beanflows/pyproject.toml
Deeman 5ce112f44d Add comprehensive E2E tests for materia CLI
- Add pytest and pytest-cov for testing
- Add niquests for modern HTTP/2 support (keep requests for hcloud compatibility)
- Create 13 E2E tests covering CLI, workers, pipelines, and secrets (71% coverage)
- Fix Pulumi ESC environment path (beanflows/prod) and secret key names
- Update GitLab CI to run CLI tests with coverage reporting

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-12 21:32:51 +02:00

55 lines
942 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",
"paramiko>=3.5.0",
"pyyaml>=6.0.2",
"niquests>=3.15.2",
"hcloud>=2.8.0",
]
[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",
"pytest>=8.4.2",
"pytest-cov>=7.0.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"