This commit is contained in:
Денис Семёнов 2025-06-19 03:03:40 +03:00
parent 4de32ca476
commit e5c4cfa573
2 changed files with 21 additions and 1 deletions

View File

@ -1,6 +1,6 @@
from typing import Optional
from maxapi.enums.button_type import ButtonType
from ....enums.button_type import ButtonType
from ....enums.intent import Intent
from .button import Button

20
setup.py Normal file
View File

@ -0,0 +1,20 @@
from setuptools import setup, find_packages
setup(
name="maxapi",
version="0.1",
packages=find_packages(),
description="Библиотека для взаимодействия с API мессенджера MAX",
long_description=open("README.md", encoding='utf-8').read(),
long_description_content_type="text/markdown",
author="Денис",
url="https://github.com/love-apples/maxapi/tree/main",
install_requires=[
'aiohttp==3.11.16',
'fastapi==0.115.13',
'magic_filter==1.0.12',
'pydantic==2.11.7',
'uvicorn==0.34.3'
],
python_requires=">=3.10",
)