a digital entity named phi that roams bsky
at main 860 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@git+https://github.com/MarshalX/atproto.git@refs/pull/605/head", 11 "fastapi", 12 "fastmcp>=0.8.0", 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[dependency-groups] 32dev = [ 33 "pytest-asyncio", 34 "pytest-sugar", 35 "ruff", 36 "ty", 37] 38 39[tool.hatch.metadata] 40allow-direct-references = true 41 42[build-system] 43requires = ["hatchling", "hatch-vcs"] 44build-backend = "hatchling.build"