diff --git a/README.md b/README.md index 3adb274..aca728c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A suite of classes to support payment message generation (for ISO 20022 payment ```bash pip install pyiso20022 -pip install xsdata +pip install xsdata[cli,lxml,soap] ``` Then use this code: @@ -27,6 +27,10 @@ print(doc.cstmr_cdt_trf_initn.pmt_inf[0].dbtr.pstl_adr.pst_cd) ## Create a MX (ISO20022) payment message programatically: +This is an example of a realistic PACS.008 MX payment message. + +Depending on your setup you may need a different or even no wrapper element (I've used here, but yours might be called something different etc) + ```python from pyiso20022.pacs.pacs_008_001_08 import * import pyiso20022.head.head_001_001_02 as hd diff --git a/requirements.txt b/requirements.txt index 769a362..753bb1a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ pytest -# generateDS xsdata[cli,lxml,soap] diff --git a/setup.py b/setup.py index 3664b7e..40b1aa2 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pyiso20022", - version="0.0.12, + version="0.1.1", author="Peter Houghton", author_email="pete@investigatingsoftware.co.uk", description="pyiso20022 is a library for generating ISO20022 messages in Python.",