Browse Source

(fix?) setup

master
Alexeev Nickolay 5 years ago
parent
commit
57ba269f6b
  1. 7
      setup.py

7
setup.py

@ -1,14 +1,15 @@
# coding: utf8 # coding: utf8
from io import open
from setuptools import setup from setuptools import setup
from os import path from os import path
this_directory = path.abspath(path.dirname(__file__)) this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f: with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read().decode('utf8') long_description = f.read()
setup(name='yandex_connect', setup(name='yandex_connect',
version='0.26b', version='0.27b',
description='API Yandex Connect', description='API Yandex Connect',
url='http://github.com/zt50tz/yandex-connect', url='http://github.com/zt50tz/yandex-connect',
author='Alexeev Nick', author='Alexeev Nick',

Loading…
Cancel
Save