Skip to content

Commit

Permalink
feat(pain001): v0.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed May 20, 2023
1 parent 987a8fe commit 55173ae
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- markdownlint-enable MD033 MD041 -->

# Pain001 (v0.0.16)
# Pain001 (v0.0.17)

![Pain001 banner][banner]

Expand Down
2 changes: 1 addition & 1 deletion pain001/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

"""The Python pain001 module."""
__all__ = ["pain001"]
__version__ = "0.0.16"
__version__ = "0.0.17"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pain001"
version = "0.0.16"
version = "0.0.17"
description = "pain001 is a Python library that makes it easy to automate the creation of ISO20022-compliant payment files directly from a CSV file."
authors = ["Sebastien Rousseau <sebastienrousseau@users.noreply.github.com>"]
license = "Apache Software License"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pain001
version = 0.0.16
version = 0.0.17
author = Sebastian Rousseau
author_email = sebastian.rousseau@gmail.com
description = pain001 is a Python Library for Automating ISO 20022-Compliant Payment Files Using CSV Data.
Expand Down
28 changes: 17 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,18 @@
from setuptools import setup

LONG_DESCRIPTION = """
Pain001 is a Python Library for Automating ISO 20022-Compliant Payment Files
Using CSV Data.
**Pain001** is a Python Library for Automating ISO 20022-Compliant Payment
Files Using CSV Data.
It offers a streamlined solution for reducing complexity and costs associated
with payment processing. By providing a simple and efficient method to create
ISO 20022-compliant payment files, it eliminates the manual effort of file
creation and validation. This not only saves valuable time and resources but
also minimizes the risk of errors, ensuring accurate and seamless payment
processing.
It offers a streamlined solution for reducing complexity and costs
associated with payment processing. By providing a simple and efficient
method to create ISO 20022-compliant payment files, it eliminates the
manual effort of file creation and validation. This not only saves valuable
time and resources but also minimizes the risk of errors, ensuring accurate and
seamless payment processing.
If you are seeking to simplify and automate your payment processing, consider
leveraging the capabilities of **Pain001**.
""".strip()

SHORT_DESCRIPTION = """
Expand All @@ -38,7 +41,7 @@

TEST_DEPENDENCIES = ["xmlschema>=2.3.0", "pytest>=7.3.1"]

VERSION = "0.0.16"
VERSION = "0.0.17"

URL = "https://github.com/sebastienrousseau/pain001"

Expand Down Expand Up @@ -66,8 +69,11 @@
"Operating System :: MacOS",
"Operating System :: Unix",
],
keywords="iso 20022 pain.001 credit transfer financial banking \
payments csv sepa",
keywords="""
Pain001, finance python library, ISO 20022, payment files, payment
processing, automate payments, ISO 20022-compliant, SWIFT, SEPA, payment
initiation messages,
""",
packages=["pain001"],
install_requires=DEPENDENCIES,
tests_require=TEST_DEPENDENCIES,
Expand Down

0 comments on commit 55173ae

Please sign in to comment.