mirror of
https://github.com/arabianq/yndx-disk.git
synced 2026-04-28 06:31:23 +00:00
161589aedd
+get_url
24 lines
646 B
Python
24 lines
646 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name="yndx_disk",
|
|
version="0.2",
|
|
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/arabian/yndx_disk",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.10",
|
|
)
|