fix commit

This commit is contained in:
2024-12-13 19:52:06 +03:00
parent 00cc47785e
commit 72b1019dca
15 changed files with 1500 additions and 42 deletions
+23
View File
@@ -0,0 +1,23 @@
from setuptools import setup, find_packages
setup(
name="yndx_disk",
version="0.1",
packages=find_packages(),
install_requires=[
"httpx", "aiofiles"
],
author="Tarasov Alexander",
author_email="a.tevg@ya.ru",
description="Wrapper for yandex disk rest api",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://gitverse.ru/arabianq/yndx_disk",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)