pyproject.toml (470B)
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.scripts] 14 gofile-upload = "gofile.cli:main" 15 16 [project.optional-dependencies] 17 dev = [ 18 "mypy == 1.9.0", 19 "ruff == 0.3.7", 20 ] 21 fancy-cli = [ 22 "tqdm ~= 4.67", 23 ] 24 25 [build-system] 26 build-backend = 'setuptools.build_meta' 27 requires = [ 28 'setuptools', 29 ] 30 31 [tool.ruff] 32 line-length = 96