a digital entity named phi that roams bsky
at init 729 B view raw
1[project] 2name = "bot" 3description = "a bluesky bot" 4readme = "README.md" 5authors = [{ name = "zzstoatzz", email = "thrast36@gmail.com" }] 6requires-python = ">=3.12" 7dynamic = ["version"] 8dependencies = [ 9 "anthropic", 10 "atproto", 11 "fastapi", 12 "httpx", 13 "openai", 14 "pydantic-ai", 15 "pydantic-settings", 16 "rich", 17 "turbopuffer", 18 "uvicorn", 19] 20 21[tool.hatch.version] 22source = "vcs" 23 24[tool.ruff.lint] 25extend-select = ["I", "UP"] 26 27[tool.pytest.ini_options] 28asyncio_mode = "auto" 29asyncio_default_fixture_loop_scope = "function" 30 31[tool.uv] 32dev-dependencies = [ 33 "pytest-sugar", 34 "pytest-asyncio", 35 "ruff", 36 "ty", 37] 38 39 40[build-system] 41requires = ["hatchling", "hatch-vcs"] 42build-backend = "hatchling.build"