diff --git a/.travis.yml b/.travis.yml index f31c2ce..57eabd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,5 @@ python: - "2.7" - "3.2" - "3.3" + - "3.4" script: nosetests tests diff --git a/example.py b/example.py index 0112d04..89e2938 100644 --- a/example.py +++ b/example.py @@ -41,4 +41,4 @@ ach_file.add_batch('PPD', entries, credits=True, debits=True) -print ach_file.render_to_string() +print(ach_file.render_to_string()) diff --git a/setup.py b/setup.py index 5354cd3..6a1a987 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ from distutils.core import setup +import codecs + +readme = codecs.open('README.rst', encoding='utf-8').read() setup( name='ach', @@ -11,5 +14,5 @@ url='https://github.com/travishathaway/python-ach', license='MIT License', description='Library to create and parse ACH files (NACHA)', - long_description=open('README.rst').read(), + long_description=readme, )