diff --git a/README.rst b/README.rst index dbcca813..91823b8e 100644 --- a/README.rst +++ b/README.rst @@ -29,5 +29,4 @@ Contributing Do you wish to contribute to IHateMoney? Fantastic! There's a lot of very useful help on the official `contributing -`_ page. - +`_ page. \ No newline at end of file diff --git a/setup.py b/setup.py index fd2e21c1..47f63b63 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -import codecs import os from setuptools import setup, find_packages @@ -8,9 +7,8 @@ here = os.path.abspath(os.path.dirname(__file__)) def read_file(filename): """Open a related file and return its content.""" - with codecs.open(os.path.join(here, filename), encoding='utf-8') as f: - content = f.read() - return content + with open(os.path.join(here, filename), "r") as f: + return f.read() def parse_requirements(filename): @@ -35,7 +33,7 @@ ENTRY_POINTS = { setup(name='ihatemoney', version='4.1', description='A simple shared budget manager web application.', - long_description=README.encode('utf-8'), + long_description=README, license='Custom BSD Beerware', classifiers=[ "Programming Language :: Python",