diff --git a/pyproject.toml b/pyproject.toml index f410960..e7ce4de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,16 @@ dev = [ "ruff>=0.9.9", ] +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatchling] +name = "pycord-rest-bot" + +[tool.hatch.build.targets.wheel] +packages = ["src/pycord_rest"] + [tool.pyright] pythonVersion = "3.12" reportAny = false @@ -74,4 +84,7 @@ extend-ignore = [ "PLR2004", "PLR0913", "C901" -] \ No newline at end of file +] + +[tool.uv.workspace] +members = ["test"]