Spaces:
Running
Running
File size: 712 Bytes
1ebbb74 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[tool.poetry]
name = "mediaflow proxy"
version = "1.0.0"
description = "A high-performance proxy server for streaming media, supporting HTTP(S), HLS, and MPEG-DASH with real-time DRM decryption."
authors = ["mhdzumair <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.112.0"
httpx = {extras = ["socks"], version = "^0.27.0"}
tenacity = "^9.0.0"
xmltodict = "^0.13.0"
cachetools = "^5.4.0"
pydantic-settings = "^2.4.0"
gunicorn = "^23.0.0"
pycryptodome = "^3.20.0"
uvicorn = "^0.30.6"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
|