23 lines
491 B
TOML
23 lines
491 B
TOML
[project]
|
|
name = "file-storage"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Anibal Angulo", email = "a8065384@banorte.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"gcloud-aio-storage>=9.6.1",
|
|
"google-cloud-storage>=2.19.0",
|
|
"aiohttp>=3.10.11,<4",
|
|
"typer>=0.12.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
file-storage = "file_storage.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.3,<0.9.0"]
|
|
build-backend = "uv_build"
|