Skip to content

Commit d699ba4

Browse files
authored
Merge pull request #31 from TheFrog/master
Fixed UTF-8 encoding in setup.py for reading README.rst
2 parents 80290a2 + 84fabfb commit d699ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
author_email='hello@micropyramid.com',
1212
url='https://github.com/MicroPyramid/forex-python',
1313
description='Foreign exchange rates and currency conversion.',
14-
long_description="\n\n".join([open("README.rst").read()]),
14+
long_description="\n\n".join([open("README.rst", encoding='utf-8').read()]),
1515
packages=find_packages(exclude=['tests', 'tests.*']),
1616
include_package_data=True,
1717
install_requires=[

0 commit comments

Comments
 (0)