maxapi/setup.py

24 lines
728 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from setuptools import setup, find_packages
setup(
name="maxapi",
version="0.3",
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'
],
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
],
python_requires=">=3.10",
)