Skip to content

Commit e9d0a0e

Browse files
committed
Initial commit
0 parents  commit e9d0a0e

File tree

8 files changed

+656
-0
lines changed

8 files changed

+656
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
__pycache__/
2+
build/
3+
dist/
4+
*.egg-info
5+
env
6+
.idea/
7+
test*.py
8+

LICENSE

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Copyright (c) 2012-2013 Raphael Michel and contributors
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
17+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
sepadd -- SEPA Direct Debit XML
2+
===============================
3+
4+
This is a python implementation to generate SEPA direct debit XML files.
5+
6+
For now, this is basically a properly packaged, python 3 tested version
7+
of the [PySepaDD](https://github.com/congressus/PySepaDD)
8+
implementation that was released by The Congressus under the MIT license.
9+
Thanks for your work!
10+
11+
Limitations
12+
-----------
13+
14+
* Currently, only SEPA PAIN.008.001.02 is supported.
15+
16+
Credits and License
17+
-------------------
18+
19+
Maintainer: Raphael Michel <[email protected]>
20+
21+
Original Author: Congressus
22+
23+
License: MIT

sepadd/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version = '1.0.0'

0 commit comments

Comments
 (0)