From 5565130e29bfeb8df652b33e3b230f8d93b8841a Mon Sep 17 00:00:00 2001 From: Kylie Czar Date: Thu, 31 Aug 2023 07:49:49 -0300 Subject: [PATCH] add dev deps --- poetry.lock | 52 +++++++++++++++++++++++++++++++++++++++++++++++++- pyproject.toml | 4 ++++ 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 723dffe..9878a86 100644 --- a/poetry.lock +++ b/poetry.lock @@ -962,6 +962,56 @@ files = [ {file = "text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8"}, ] +[[package]] +name = "types-beautifulsoup4" +version = "4.12.0.6" +description = "Typing stubs for beautifulsoup4" +optional = false +python-versions = "*" +files = [ + {file = "types-beautifulsoup4-4.12.0.6.tar.gz", hash = "sha256:045ab285d3e540186e16133612f43f67e31f910e6d7578906b43a0ad8f811347"}, + {file = "types_beautifulsoup4-4.12.0.6-py3-none-any.whl", hash = "sha256:3da00d754e73afae0ec2793253af0cb9aa1ff2c730e34b31c60313da781b4f6f"}, +] + +[package.dependencies] +types-html5lib = "*" + +[[package]] +name = "types-html5lib" +version = "1.1.11.15" +description = "Typing stubs for html5lib" +optional = false +python-versions = "*" +files = [ + {file = "types-html5lib-1.1.11.15.tar.gz", hash = "sha256:80e1a2062d22a3affe5c28d97da30bffbf3a076d393c80fc6f1671216c1bd492"}, + {file = "types_html5lib-1.1.11.15-py3-none-any.whl", hash = "sha256:16fe936d99b9f7fc210e2e21a2aed1b6bbbc554ad8242a6ef75f6f2bddb27e58"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + [[package]] name = "urllib3" version = "2.0.4" @@ -1167,4 +1217,4 @@ websockets = "*" [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "72b65ff4ab6c385093124b6864b6b27bdea3976db062afc9bafae510e8266079" +content-hash = "b5e662615b427db04b2157b80d3b633230f62e64181289bdce868c2c512e31c3" diff --git a/pyproject.toml b/pyproject.toml index b30d43e..d1b95e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,10 @@ yt-dlp = "^2023.7.6" [tool.poetry.dev-dependencies] +[tool.poetry.group.dev.dependencies] +types-requests = "^2.31.0.2" +types-beautifulsoup4 = "^4.12.0.6" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"