48 lines
976 B
TOML
Raw Normal View History

2025-11-09 23:29:07 +01:00
[tool.poetry]
name = "rbox"
version = "0.1.0"
description = "A self-hosted cloud storage web application"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
2025-11-10 01:58:41 +01:00
python = "^3.12"
2025-11-09 23:29:07 +01:00
fastapi = "*"
uvicorn = {extras = ["standard"], version = "*"}
tortoise-orm = {extras = ["asyncpg"], version = "*"}
redis = "*"
python-jose = {extras = ["cryptography"], version = "*"}
passlib = {extras = ["bcrypt"], version = "*"}
pyotp = "*"
2025-11-10 01:58:41 +01:00
qrcode = "*"
2025-11-09 23:29:07 +01:00
python-multipart = "*"
aiofiles = "*"
httpx = "*"
pillow = "*"
python-magic = "*"
watchdog = "*"
asyncio-throttle = "*"
python-dotenv = "*"
aiowebdav = "*"
minio = "*"
cryptography = "*"
#tesseract-ocr = "*"
opencv-python = "*"
ffmpeg-python = "*"
gunicorn = "*"
2025-11-11 17:57:45 +01:00
aiosmtplib = "*"
stripe = "*"
2025-11-09 23:29:07 +01:00
[tool.poetry.group.dev.dependencies]
black = "*"
isort = "*"
flake8 = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
rbox = "rbox.main:main"