Files
yndx-disk/setup.py
T
2026-07-31 16:30:04 +03:00

24 lines
648 B
Python

from setuptools import setup, find_packages
setup(
name="yndx_disk",
version="0.3.3",
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://github.com/arabianq/yndx-disk",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)