Files
clawfort/pyproject.toml
Santhosh Janardhanan 679561bcdb
Some checks failed
quality-gates / lint-and-test (push) Has been cancelled
quality-gates / security-scan (push) Has been cancelled
First deployment
2026-02-13 09:14:04 -05:00

30 lines
567 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",
"pytest-cov>=5.0.0",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]