Files
clawfort/pyproject.toml
2026-02-12 16:50:29 -05:00

29 lines
542 B
TOML

[project]
name = "clawfort"
version = "0.1.0"
description = "ClawFort AI News Aggregation One-Pager"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"sqlalchemy>=2.0.0",
"apscheduler>=3.10.0",
"httpx>=0.27.0",
"pillow>=10.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.3.0",
"pytest>=8.0.0",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]