Merge pull request #22 from Lafudoci/pip_read

Read the README.rst with UTF8
This commit is contained in:
Michał Sałaban 2018-05-30 12:53:44 +02:00 committed by GitHub
commit 7c26bb62d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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').read(),
long_description = open('README.rst', encoding = 'utf8').read(),
install_requires = open('requirements.txt', 'r').read().splitlines(),
packages = find_packages('.', exclude=['tests']),
include_package_data = True,