Библиотека python для использования API Yandex connect / Яндекс коннект.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
710 B

# coding: utf8
from io import open
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='yandex_connect',
version='0.29b0',
description='API Yandex Connect',
url='http://github.com/zt50tz/yandex-connect',
author='Alexeev Nick',
author_email='n@akolka.ru',
license='MIT',
packages=['yandex_connect'],
install_requires=[
'requests',
'docutils'
],
zip_safe=False,
long_description=long_description,
long_description_content_type='text/markdown'
)