mhdzumair commited on
Commit
9d4007c
1 Parent(s): f9dad28

Add `tqdm` dependency and update project version

Browse files
Files changed (2) hide show
  1. poetry.lock +21 -1
  2. pyproject.toml +2 -1
poetry.lock CHANGED
@@ -566,6 +566,26 @@ files = [
566
  {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"},
567
  ]
568
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  [[package]]
570
  name = "typing-extensions"
571
  version = "4.12.2"
@@ -610,4 +630,4 @@ files = [
610
  [metadata]
611
  lock-version = "2.0"
612
  python-versions = ">=3.10"
613
- content-hash = "82b614db25311cde2b5ae15465b537fcb82c4c9cef5817fe45f030d1ea588646"
 
566
  {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"},
567
  ]
568
 
569
+ [[package]]
570
+ name = "tqdm"
571
+ version = "4.66.5"
572
+ description = "Fast, Extensible Progress Meter"
573
+ optional = false
574
+ python-versions = ">=3.7"
575
+ files = [
576
+ {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"},
577
+ {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"},
578
+ ]
579
+
580
+ [package.dependencies]
581
+ colorama = {version = "*", markers = "platform_system == \"Windows\""}
582
+
583
+ [package.extras]
584
+ dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"]
585
+ notebook = ["ipywidgets (>=6)"]
586
+ slack = ["slack-sdk"]
587
+ telegram = ["requests"]
588
+
589
  [[package]]
590
  name = "typing-extensions"
591
  version = "4.12.2"
 
630
  [metadata]
631
  lock-version = "2.0"
632
  python-versions = ">=3.10"
633
+ content-hash = "8f7497d565d81c39251e2413999975dc89af0404f0205a0f2e6b26b5a4d8a8bd"
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [tool.poetry]
2
  name = "mediaflow-proxy"
3
- version = "1.7.4"
4
  description = "A high-performance proxy server for streaming media, supporting HTTP(S), HLS, and MPEG-DASH with real-time DRM decryption."
5
  authors = ["mhdzumair <[email protected]>"]
6
  readme = "README.md"
@@ -32,6 +32,7 @@ pydantic-settings = "^2.5.2"
32
  gunicorn = "^23.0.0"
33
  pycryptodome = "^3.20.0"
34
  uvicorn = "^0.31.0"
 
35
 
36
 
37
  [tool.poetry.group.dev.dependencies]
 
1
  [tool.poetry]
2
  name = "mediaflow-proxy"
3
+ version = "1.7.5"
4
  description = "A high-performance proxy server for streaming media, supporting HTTP(S), HLS, and MPEG-DASH with real-time DRM decryption."
5
  authors = ["mhdzumair <[email protected]>"]
6
  readme = "README.md"
 
32
  gunicorn = "^23.0.0"
33
  pycryptodome = "^3.20.0"
34
  uvicorn = "^0.31.0"
35
+ tqdm = "^4.66.5"
36
 
37
 
38
  [tool.poetry.group.dev.dependencies]