6d15b06cc2
- Add client.py with RobloxClient class (migrated from clothing-upload-bot) - Credentials passed via constructor instead of module-level env globals - Supports async context manager and manual close() - Add __init__.py exporting RobloxClient, RateLimitError, and models - Add .gitignore
17 lines
313 B
TOML
17 lines
313 B
TOML
[project]
|
|
name = "rbx-upload"
|
|
version = "0.1.0"
|
|
description = "Roblox asset upload client"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"httpx>=0.25.0",
|
|
]
|
|
license = "MIT"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/rbx_upload"]
|