From 68f3ce7cad57d65045f8c6a29e49c53174604c2e Mon Sep 17 00:00:00 2001 From: nessshon Date: Thu, 19 Dec 2024 05:30:33 +0500 Subject: [PATCH] Update version, deps and python versions. --- setup.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index e5dfe5a..88488f5 100644 --- a/setup.py +++ b/setup.py @@ -5,25 +5,23 @@ setuptools.setup( name="pytonapi", - version="0.4.4", + version="0.4.5", author="nessshon", description="Provide access to indexed TON blockchain.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/tonkeeper/pytonapi/", - packages=setuptools.find_packages(exclude=["examples", "tests"]), + packages=setuptools.find_packages(include=["pytonapi", "pytonapi.*"]), install_requires=[ - "httpx>=0.26.0", - "websockets>=12.0", - "pydantic==2.*", + "aiohttp~=3.11.11", + "pydantic==2.10.4", ], classifiers=[ - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ],