From 2ac7fae915dca872656f93e198b6aec45eef3f3b Mon Sep 17 00:00:00 2001 From: Mathias Behrle Date: Thu, 21 May 2015 17:14:52 +0200 Subject: [PATCH] Adding upstream version 1.2.0+ds. Signed-off-by: Mathias Behrle --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a3855b6..c26ef9b 100755 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ import os import sys +import codecs try: from setuptools import setup @@ -11,8 +12,13 @@ except ImportError: __version__ = '1.2.0' -readme = open('README.rst').read() -history = open('HISTORY.rst').read().replace('.. :changelog:', '') + +def read(fname): + return codecs.open( + os.path.join(os.path.dirname(__file__), fname), 'r', 'utf-8').read() + +readme = read('README.rst') +history = read('HISTORY.rst').replace('.. :changelog:', '') if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload')