2025-11-09 23:29:07 +01:00
|
|
|
[tool.poetry]
|
2025-11-13 20:42:43 +01:00
|
|
|
name = "mywebdav"
|
2025-11-09 23:29:07 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "A self-hosted cloud storage web application"
|
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
feat: add 2fa support, starred items, batch operations, and logging infrastructure
- Implement two-factor authentication with TOTP verification, recovery codes, and QR code setup in auth flow
- Add is_starred and last_accessed_at fields to File and Folder models for bookmarking and recency tracking
- Introduce batch operation endpoints for files and folders (delete, star, unstar, move, copy)
- Configure structured logging with timestamps and module names, replacing print statements
- Register admin and starred routers, add global HTTPException handler with JSON error responses
- Update authenticate_user and create_access_token to handle 2FA verification and token claims
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 = "*"
|
feat: add 2fa support, starred items, batch operations, and logging infrastructure
- Implement two-factor authentication with TOTP verification, recovery codes, and QR code setup in auth flow
- Add is_starred and last_accessed_at fields to File and Folder models for bookmarking and recency tracking
- Introduce batch operation endpoints for files and folders (delete, star, unstar, move, copy)
- Configure structured logging with timestamps and module names, replacing print statements
- Register admin and starred routers, add global HTTPException handler with JSON error responses
- Update authenticate_user and create_access_token to handle 2FA verification and token claims
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]
|
2025-11-13 20:42:43 +01:00
|
|
|
mywebdav = "mywebdav.main:main"
|
2025-11-09 23:29:07 +01:00
|
|
|
|