Files
threads/pyproject.toml
T
ivy 5afbdd7d94 refactor: migrate to rbx-upload library
- Replace hand-rolled roblox_service.py and models.py with rbx-upload
- Initialize RobloxClient in FastAPI lifespan context manager
- Remove leaked singleton httpx.AsyncClient
- Simplify upload_clothing_image call (group_id int instead of RbxCreator)
- Fix GET /asset/{id} returning a set literal instead of a dict
- Drop httpx direct dependency (now transitive via rbx-upload)
2026-02-18 09:41:22 -05:00

12 lines
289 B
TOML

[project]
name = "threads"
version = "0.1.0"
description = "Bot used as part of Filoxen Research Facilities to automatically upload clothing"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.126.0",
"python-dotenv>=1.2.1",
"rbx-upload",
]