
---

# 3️⃣ pyproject.toml

## 📄 `pyproject.toml`
```toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "robloxinfo"
version = "0.1.0"
description = "Fetch public Roblox account info via Python"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Bilal" }]
dependencies = ["requests>=2.31"]

classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]
