this repo has no description
1[build-system]
2requires = ["uv_build>=0.9.17,<0.10.0"]
3build-backend = "uv_build"
4
5[project]
6name = "artscrolling"
7version = "0.1.0"
8description = "Artscrolling Bluesky feed"
9readme = "README.md"
10authors = [
11 { name = "Juan Luis Cano Rodríguez", email = "hello@juanlu.space" }
12]
13requires-python = ">=3.14"
14dependencies = [
15 "atproto>=0.0.65",
16 "fastapi>=0.127.0",
17 "pydantic-settings>=2.12.0",
18 "uvicorn>=0.40.0",
19]
20
21[dependency-groups]
22dev = [
23 "fastapi[standard]>=0.127.0",
24]
25
26[tool.ruff]
27show-fixes = true
28
29[tool.ruff.lint]
30select = [
31 "F", # Pyflakes
32 "E", # Pycodestyle
33 "W", # Pycodestyle
34 # "D", # Pydocstyle
35 "UP", # pyupgrade
36 "I", # isort
37 "PL", # Pylint
38]