From 3ff9907a585d625c1ebe4b15a18f6ee810cd54a5 Mon Sep 17 00:00:00 2001 From: Denis Date: Sun, 27 Jul 2025 02:15:03 +0300 Subject: [PATCH] =?UTF-8?q?0.9.2=20fastapi,=20uvicorn=20=D0=BE=D0=BF=D1=86?= =?UTF-8?q?=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 220b941..719516b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "maxapi" -version = "0.9.1" +version = "0.9.2" description = "Библиотека для разработки чат-ботов с помощью API мессенджера MAX" readme = "README.md" requires-python = ">=3.10" @@ -14,14 +14,16 @@ classifiers = [ ] dependencies = [ "aiohttp>=3.8.0", - "fastapi>=0.68.0", "magic_filter>=1.0.0", "pydantic>=1.8.0", - "uvicorn>=0.15.0", "aiofiles==24.1.0", "puremagic==1.30" ] +optional-dependencies = { + webhook = ["fastapi>=0.68.0", "uvicorn>=0.15.0"] +} + [project.urls] Homepage = "https://github.com/love-apples/maxapi"