gofile

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

pyproject.toml (381B)


      1 [project]
      2 name = "gofile"
      3 description = "API to upload files to gofile"
      4 version = "0.0.1"
      5 
      6 dependencies = [
      7     "httpx",
      8     "msgspec ~= 0.19.0",
      9 ]
     10 
     11 requires-python = ">= 3.11"
     12 
     13 [project.optional-dependencies]
     14 dev = [
     15     "mypy == 1.9.0",
     16     "ruff == 0.3.7",
     17 ]
     18 
     19 [build-system]
     20 build-backend = 'setuptools.build_meta'
     21 requires = [
     22     'setuptools',
     23 ]
     24 
     25 [tool.ruff]
     26 line-length = 96