gofile

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

pyproject.toml (417B)


      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 fancy-cli = [
     19     "tqdm ~= 4.67",
     20 ]
     21 
     22 [build-system]
     23 build-backend = 'setuptools.build_meta'
     24 requires = [
     25     'setuptools',
     26 ]
     27 
     28 [tool.ruff]
     29 line-length = 96