Files
beanflows/web/pyproject.toml
Deeman c8b86569ff
All checks were successful
CI / test-cli (push) Successful in 11s
CI / test-sqlmesh (push) Successful in 14s
CI / test-web (push) Successful in 14s
CI / tag (push) Successful in 2s
chore: consolidate to single ruff config in root pyproject.toml
- Merge web ruff settings (select E/F/I/UP, line-length 100) into root config
- Remove [tool.ruff] section from web/pyproject.toml
- Remove "web" from root ruff exclude list
- Simplify pre-commit hook to one command: ruff check .
- Update CI to use: uv run ruff check . (from repo root)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-28 12:21:01 +01:00

42 lines
856 B
TOML

[project]
name = "beanflows"
version = "0.1.0"
description = "Commodity analytics for coffee traders"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Hendrik Deeman", email = "hendrik@beanflows.coffee" }
]
dependencies = [
"quart>=0.19.0",
"aiosqlite>=0.19.0",
"duckdb>=1.0.0",
"httpx>=0.27.0",
"resend>=2.22.0",
"python-dotenv>=1.0.0",
"paddle-python-sdk>=1.13.0",
"itsdangerous>=2.1.0",
"jinja2>=3.1.0",
"hypercorn>=0.17.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/beanflows"]
[tool.uv]
dev-dependencies = [
"hypothesis>=6.100.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"respx>=0.22.0",
"ruff>=0.3.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]