summaryrefslogtreecommitdiff
path: root/ofxparse/__init__.py
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2018-11-05 14:44:38 +0100
committerAndrej Shadura <andrewsh@debian.org>2018-11-05 14:44:38 +0100
commit4d73449bab819dddc8e7f52ddf01b6bacd2a7e40 (patch)
tree992d9135cdaf62c13cf05fb6bc73628b1d5c7577 /ofxparse/__init__.py
parent8f6a863fcd6a0518ea8e3e1e863346553d0250ba (diff)
parent59c3ccc50d3504bfeb1a3f7e31ba806e2b5c3a07 (diff)
Update upstream source from tag 'upstream/0.19'
Update to upstream version '0.19' with Debian dir 0cc2866dc4222e919db114429121a55eadb99c77
Diffstat (limited to 'ofxparse/__init__.py')
-rw-r--r--ofxparse/__init__.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/ofxparse/__init__.py b/ofxparse/__init__.py
index d9d4d5e..e939657 100644
--- a/ofxparse/__init__.py
+++ b/ofxparse/__init__.py
@@ -1,6 +1,16 @@
from __future__ import absolute_import
-from .ofxparse import OfxParser, OfxParserException, AccountType, Account, Statement, Transaction
+from .ofxparse import (OfxParser, OfxParserException, AccountType, Account,
+ Statement, Transaction)
from .ofxprinter import OfxPrinter
-__version__ = '0.14'
+__version__ = '0.19'
+__all__ = [
+ 'OfxParser',
+ 'OfxParserException',
+ 'AccountType',
+ 'Account',
+ 'Statement',
+ 'Transaction',
+ 'OfxPrinter'
+]