gofile

Module and tool to upload files to gofile.io
git clone https://code.alwayswait.ing/gofile.git
Log | Files | Refs

commit 099f19d1216d9140c4bed3b20fd8e1deb73a663a
parent 589f780911731cad0d42af679693376138a7af61
Author: archiveanon <>
Date:   Mon, 24 Feb 2025 07:28:51 +0000

Add pyproject.toml

Diffstat:
Apyproject.toml | 26++++++++++++++++++++++++++
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml @@ -0,0 +1,26 @@ +[project] +name = "gofile" +description = "API to upload files to gofile" +version = "0.0.1" + +dependencies = [ + "httpx", + "msgspec ~= 0.19.0", +] + +requires-python = ">= 3.11" + +[project.optional-dependencies] +dev = [ + "mypy == 1.9.0", + "ruff == 0.3.7", +] + +[build-system] +build-backend = 'setuptools.build_meta' +requires = [ + 'setuptools', +] + +[tool.ruff] +line-length = 96