Fix Python 2.x compatibility problem, close #24

This commit is contained in:
Michał Sałaban 2018-06-04 00:56:58 +02:00
parent 7c26bb62d9
commit 4ec127d065
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ setup(
version = version,
description = 'A comprehensive Python module for handling Monero cryptocurrency',
url = 'https://github.com/emesik/monero-python/',
long_description = open('README.rst', encoding = 'utf8').read(),
long_description = open('README.rst', 'rb').read().decode('utf-8'),
install_requires = open('requirements.txt', 'r').read().splitlines(),
packages = find_packages('.', exclude=['tests']),
include_package_data = True,