From 2dfb63e0615068726a3639107a4a0eb768251ca9 Mon Sep 17 00:00:00 2001 From: evilchili Date: Sun, 21 Sep 2025 13:56:05 -0700 Subject: [PATCH] installing dependencies --- pyproject.toml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 26a4e89..18653e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "ttfrog" version = "1.0" -description = "ttfrog: automatically generated by poetry-slam." +description = "TTFrog" authors = ["greg"] readme = "README.md" packages = [ @@ -10,13 +10,23 @@ packages = [ [tool.poetry.dependencies] python = "^3.11" -python-dotenv = "^0.21.0" -rich = "^13.7.0" -typer = "^0.9.0" +python-dotenv = "*" +rich = "*" +typer = "*" +aiohttp = ">=3.8" +aiohttp-cors = "^0.8.1" +aiohttp-session = ">=2.10" +imagesize = "^1.4.1" +jinja2 = "^3.1.6" +prettytable = ">=1.0" +pygments = "^2.19.2" +pyotp = "^2.9.0" +cryptography = "^46.0.1" +setuptools = "^80.9.0" [tool.poetry.group.dev.dependencies] -pytest = "^8.4.2" -pytest-cov = "^7.0.0" +pytest = "*" +pytest-cov = "*" [build-system] requires = ["poetry-core"]