Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
script: nosetests tests
2 changes: 1 addition & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from distutils.core import setup
import codecs

readme = codecs.open('README.rst', encoding='utf-8').read()

setup(
name='ach',
Expand All @@ -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,
)