Skip to content

Commit 84fabfb

Browse files
committed
Fixed UTF-8 encoding in setup.py for reading README.rst (problem when installing on Mac OS X)
1 parent 80290a2 commit 84fabfb

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)