Control: tags 1022310 + patch
Control: tags 1022310 + pending

Dear maintainer,

I've prepared an NMU for ofxstatement-plugins (versioned as 20210310+nmu1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards,

SR
diff -Nru ofxstatement-plugins-20210310/debian/changelog ofxstatement-plugins-20210310+nmu1/debian/changelog
--- ofxstatement-plugins-20210310/debian/changelog	2021-03-10 10:15:48.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/debian/changelog	2022-11-05 18:36:19.000000000 +0200
@@ -1,3 +1,10 @@
+ofxstatement-plugins (20210310+nmu1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Patch: Support setuptools 60. (Closes: #1022310)
+
+ -- Stefano Rivera <stefa...@debian.org>  Sat, 05 Nov 2022 18:36:19 +0200
+
 ofxstatement-plugins (20210310) unstable; urgency=medium
 
   * d/rules: Disable autotests because of tecnical FTBFS. (Closes: #982704)
diff -Nru ofxstatement-plugins-20210310/debian/patches/series ofxstatement-plugins-20210310+nmu1/debian/patches/series
--- ofxstatement-plugins-20210310/debian/patches/series	2021-01-08 15:32:57.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/debian/patches/series	2022-11-05 18:34:18.000000000 +0200
@@ -3,3 +3,4 @@
 03-fix-pytest.patch
 04-fix-ofxstatement-6.5+-compatibility.patch
 05-fix-interpreter.patch
+setuptools-60.patch
diff -Nru ofxstatement-plugins-20210310/debian/patches/setuptools-60.patch ofxstatement-plugins-20210310+nmu1/debian/patches/setuptools-60.patch
--- ofxstatement-plugins-20210310/debian/patches/setuptools-60.patch	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/debian/patches/setuptools-60.patch	2022-11-05 18:36:19.000000000 +0200
@@ -0,0 +1,39 @@
+Description: Import setuptools before distutils
+ setuptools 60 uses its own bunlded version of distutils, by default. It
+ injects this into sys.modules, at import time. So we need to make sure that it
+ is imported, before anything else imports distutils, to ensure everything is
+ using the same distutils version.
+ .
+ This is to prepare for Python 3.12, which will drop distutils.
+Author: Stefano Rivera <stefa...@debian.org>
+Bug-Debian: https://bugs.debian.org/1022310
+Forwarded: https://github.com/lbschenkel/ofxstatement-al_bank/pull/1
+Forwarded: https://github.com/lbschenkel/ofxstatement-lansforsakringar/pull/3 
+--- a/ofxstatement-al_bank/setup.py
++++ b/ofxstatement-al_bank/setup.py
+@@ -1,9 +1,9 @@
+ #!/usr/bin/python3
+ 
+-from distutils.core import setup
+-
+ from setuptools import find_packages
+ 
++from distutils.core import setup
++
+ version = "0.2.1"
+ 
+ with open('README.rst') as f:
+--- a/ofxstatement-lansforsakringar/setup.py
++++ b/ofxstatement-lansforsakringar/setup.py
+@@ -1,9 +1,9 @@
+ #!/usr/bin/python3
+ 
+-from distutils.core import setup
+-
+ from setuptools import find_packages
+ 
++from distutils.core import setup
++
+ version = "0.2.0"
+ 
+ with open('README.rst', mode='r', encoding='utf-8') as f:
diff -Nru ofxstatement-plugins-20210310/ofxstatement-al_bank/setup.py ofxstatement-plugins-20210310+nmu1/ofxstatement-al_bank/setup.py
--- ofxstatement-plugins-20210310/ofxstatement-al_bank/setup.py	2021-01-08 15:17:55.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-al_bank/setup.py	2022-11-05 18:34:31.000000000 +0200
@@ -1,9 +1,9 @@
 #!/usr/bin/python3
 
-from distutils.core import setup
-
 from setuptools import find_packages
 
+from distutils.core import setup
+
 version = "0.2.1"
 
 with open('README.rst') as f:
diff -Nru ofxstatement-plugins-20210310/ofxstatement-be-argenta/setup.py ofxstatement-plugins-20210310+nmu1/ofxstatement-be-argenta/setup.py
--- ofxstatement-plugins-20210310/ofxstatement-be-argenta/setup.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-be-argenta/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -31,14 +31,11 @@
       namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
       entry_points={
           'ofxstatement': ['argenta = ofxstatement.plugins.argenta:ArgentaPlugin'],
-          'console_scripts': ['ofx-argenta-convert = ofxstatement_be_argenta.convert:convert']
       },
       install_requires=[
           'ofxstatement>=0.6.1',
-          'openpyxl>=2.6.2',
-          'click>=6.7'
+          'openpyxl',
       ],
-      test_suite='ofxstatement.plugins.tests',
       include_package_data=True,
       zip_safe=True
       )
diff -Nru ofxstatement-plugins-20210310/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py ofxstatement-plugins-20210310+nmu1/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py
--- ofxstatement-plugins-20210310/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py	2022-11-05 18:34:12.000000000 +0200
@@ -30,6 +30,7 @@
         line[4]=line[4].replace('.','').replace(',','.')        
         # fill statement line according to mappings
         sl = super(DKBCCCsvStatementParser, self).parse_record(line)
+        sl.id = statement.generate_transaction_id(sl)
         return sl
 
 class DKBCCPlugin(Plugin):
diff -Nru ofxstatement-plugins-20210310/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py ofxstatement-plugins-20210310+nmu1/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py
--- ofxstatement-plugins-20210310/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py	2022-11-05 18:34:12.000000000 +0200
@@ -25,6 +25,7 @@
             
         # fill statement line according to mappings
         sl = super(FlatexCsvStatementParser, self).parse_record(line)
+        sl.id = statement.generate_transaction_id(sl)
         return sl    
 
 
diff -Nru ofxstatement-plugins-20210310/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py ofxstatement-plugins-20210310+nmu1/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py
--- ofxstatement-plugins-20210310/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py	2022-11-05 18:34:12.000000000 +0200
@@ -27,6 +27,7 @@
 
         # fill statement line according to mappings
         sl = super(LbbAmazonCsvStatementParser, self).parse_record(line)
+        sl.id = statement.generate_transaction_id(sl)
         return sl
 
 
diff -Nru ofxstatement-plugins-20210310/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py ofxstatement-plugins-20210310+nmu1/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py
--- ofxstatement-plugins-20210310/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py	2022-11-05 18:34:12.000000000 +0200
@@ -10,7 +10,7 @@
     pass
 
 
-def test_generator(test_file_name):
+def generate_test(test_file_name):
     def test_parser(self):
         with open(test_file_name, 'rb') as test_file:
             parser = GPCParser(test_file)
@@ -43,7 +43,7 @@
     for t in tests:
         test_base = os.path.splitext(os.path.split(t)[1])[0]
         test_core = 'test_%s' % test_base
-        tests = test_generator(t)
+        tests = generate_test(t)
         for test in zip(['parser', 'parseLine'], tests):
             test_name = "{}_{}".format(test_core, test[0])
             setattr(TestParser, test_name, test[1])
diff -Nru ofxstatement-plugins-20210310/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py ofxstatement-plugins-20210310+nmu1/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py
--- ofxstatement-plugins-20210310/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py	2022-11-05 18:34:12.000000000 +0200
@@ -8,7 +8,7 @@
     pass
 
 
-def test_generator(test_file_name):
+def generate_test(test_file_name):
     def test_parser(self):
         with open(test_file_name, "U", encoding="utf-8-sig") as test_file:
             parser = PSTextFormatParser(test_file)
@@ -35,7 +35,7 @@
     for t in tests:
         test_base = os.path.splitext(os.path.split(t)[1])[0]
         test_core = 'test_%s' % test_base
-        tests = test_generator(t)
+        tests = generate_test(t)
         for test in zip(['parser', 'parseLine'], tests):
             test_name = "{}_{}".format(test_core, test[0])
             setattr(TestParser, test_name, test[1])
diff -Nru ofxstatement-plugins-20210310/ofxstatement-intesasp/setup.py ofxstatement-plugins-20210310+nmu1/ofxstatement-intesasp/setup.py
--- ofxstatement-plugins-20210310/ofxstatement-intesasp/setup.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-intesasp/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -36,7 +36,7 @@
           'ofxstatement':
           ['IntesaSP = ofxstatement.plugins.intesaSP:IntesaSanPaoloPlugin']
           },
-      install_requires=['ofxstatement', 'openpyxl', 'dataclasses'],
+      install_requires=['ofxstatement', 'openpyxl'],
       include_package_data=True,
       zip_safe=True
       )
diff -Nru ofxstatement-plugins-20210310/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py ofxstatement-plugins-20210310+nmu1/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py
--- ofxstatement-plugins-20210310/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py	2022-11-05 18:34:12.000000000 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3.6
+#!/usr/bin/env python3
 
 from openpyxl import load_workbook
 from dataclasses import dataclass
diff -Nru ofxstatement-plugins-20210310/ofxstatement-lansforsakringar/setup.py ofxstatement-plugins-20210310+nmu1/ofxstatement-lansforsakringar/setup.py
--- ofxstatement-plugins-20210310/ofxstatement-lansforsakringar/setup.py	2019-11-14 11:40:32.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-lansforsakringar/setup.py	2022-11-05 18:34:49.000000000 +0200
@@ -1,9 +1,9 @@
 #!/usr/bin/python3
 
-from distutils.core import setup
-
 from setuptools import find_packages
 
+from distutils.core import setup
+
 version = "0.2.0"
 
 with open('README.rst', mode='r', encoding='utf-8') as f:
diff -Nru ofxstatement-plugins-20210310/ofxstatement-lfs/setup.py ofxstatement-plugins-20210310+nmu1/ofxstatement-lfs/setup.py
--- ofxstatement-plugins-20210310/ofxstatement-lfs/setup.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-lfs/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -1,7 +1,7 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
-from distutils.core import setup
+from setuptools import setup
 
 version = '0.0.1'
 with open('README.rst', encoding="utf-8") as f:
@@ -31,11 +31,10 @@
           'ofxstatement': ['lfs = ofxstatement.plugins.lfs:LfsPlugin']
       },
       install_requires=[
-          'appdirs==1.4.3',
-          'ofxstatement==0.6.1',
-          'xlrd==1.1.0',
+          'appdirs',
+          'ofxstatement',
+          'xlrd',
       ],
-      test_suite='ofxstatement.plugins.tests',
       include_package_data=True,
       zip_safe=True
       )
diff -Nru ofxstatement-plugins-20210310/_ofxstatement-paypal/setup.py ofxstatement-plugins-20210310+nmu1/_ofxstatement-paypal/setup.py
--- ofxstatement-plugins-20210310/_ofxstatement-paypal/setup.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/_ofxstatement-paypal/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -1,7 +1,7 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
-from distutils.core import setup
+from setuptools import setup
 
 version = '1.0.0'
 with open('README.rst') as f:
@@ -31,7 +31,6 @@
           'ofxstatement': ['paypal = ofxstatement.plugins.paypal:PayPalPlugin']
       },
       install_requires=['ofxstatement'],
-      test_suite='ofxstatement.plugins.tests',
       include_package_data=True,
       zip_safe=True
       )
diff -Nru ofxstatement-plugins-20210310/ofxstatement-seb/setup.py ofxstatement-plugins-20210310+nmu1/ofxstatement-seb/setup.py
--- ofxstatement-plugins-20210310/ofxstatement-seb/setup.py	2021-03-10 10:12:18.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/ofxstatement-seb/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -1,7 +1,7 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
-from distutils.core import setup
+from setuptools import setup
 
 version = '1.0.0'
 with open('README.rst', encoding = "utf-8") as f:
@@ -31,7 +31,6 @@
           'ofxstatement': ['seb = ofxstatement.plugins.seb:SebPlugin']
       },
       install_requires=['ofxstatement'],
-      test_suite='ofxstatement.plugins.tests',
       include_package_data=True,
       zip_safe=True
       )
diff -Nru ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-be-argenta/setup.py ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-be-argenta/setup.py
--- ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-be-argenta/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-be-argenta/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,44 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+from setuptools import find_packages
+from distutils.core import setup
+
+version = '1.0.5'
+with open('README.rst', encoding = "utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-argenta',
+      version=version,
+      author='Wout Breugelmans',
+      author_email='wout.breugelmans+ofxstatem...@gmail.com',
+      url='https://github.com/woutbr/ofxstatement-be-argenta',
+      description=('ofxstatement plugin for Argenta'),
+      long_description=long_description,
+      long_description_content_type='text/x-rst',
+      license='MIT',
+      keywords=['ofx', 'ofxstatement', 'argenta'],
+      classifiers=[
+          'Development Status :: 5 - Production/Stable',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: MIT License',
+      ],
+      packages=find_packages(),
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['argenta = ofxstatement.plugins.argenta:ArgentaPlugin'],
+          'console_scripts': ['ofx-argenta-convert = ofxstatement_be_argenta.convert:convert']
+      },
+      install_requires=[
+          'ofxstatement>=0.6.1',
+          'openpyxl>=2.6.2',
+          'click>=6.7'
+      ],
+      test_suite='ofxstatement.plugins.tests',
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-intesasp/setup.py ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-intesasp/setup.py
--- ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-intesasp/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-intesasp/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/env python3.6
+"""
+Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.1.3"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-intesasp',
+      version=version,
+      author="Di Campli D. Raffaele Jr",
+      author_email="dcdrj....@gmail.com",
+      url="https://github.com/Jacotsu/ofxstatement-intesasp";,
+      description=("Plugin for ofxstatement that supports Intesa San paolo"
+                   "xlsx file"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3.6',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['IntesaSP = ofxstatement.plugins.intesaSP:IntesaSanPaoloPlugin']
+          },
+      install_requires=['ofxstatement', 'openpyxl', 'dataclasses'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-lfs/setup.py ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-lfs/setup.py
--- ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-lfs/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-lfs/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,41 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from distutils.core import setup
+
+version = '0.0.1'
+with open('README.rst', encoding="utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-lfs',
+      version=version,
+      author='Alexander Krasnukhin',
+      author_email='the.malk...@gmail.com',
+      url='https://github.com/themalkolm/ofxstatement-lfs',
+      description=('ofxstatement plugins for Lansforsakringar'),
+      long_description=long_description,
+      license='MIT',
+      keywords=['ofx', 'ofxstatement', 'lfs', 'lansforsakringar'],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent'
+      ],
+      packages=['ofxstatement', 'ofxstatement.plugins'],
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['lfs = ofxstatement.plugins.lfs:LfsPlugin']
+      },
+      install_requires=[
+          'appdirs==1.4.3',
+          'ofxstatement==0.6.1',
+          'xlrd==1.1.0',
+      ],
+      test_suite='ofxstatement.plugins.tests',
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/_ofxstatement-paypal/setup.py ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/_ofxstatement-paypal/setup.py
--- ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/_ofxstatement-paypal/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/_ofxstatement-paypal/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,37 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from distutils.core import setup
+
+version = '1.0.0'
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-paypal',
+      version=version,
+      author='Alexander Krasnukhin',
+      author_email='the.malk...@gmail.com',
+      url='https://github.com/themalkolm/ofxstatement-paypal',
+      description=('ofxstatement plugins for paypal'),
+      long_description=long_description,
+      license='Apache License 2.0',
+      keywords=['ofx', 'ofxstatement', 'paypal'],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent'
+      ],
+      packages=['ofxstatement', 'ofxstatement.plugins'],
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['paypal = ofxstatement.plugins.paypal:PayPalPlugin']
+      },
+      install_requires=['ofxstatement'],
+      test_suite='ofxstatement.plugins.tests',
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-seb/setup.py ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-seb/setup.py
--- ofxstatement-plugins-20210310/.pc/01-fix-autotests.patch/ofxstatement-seb/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/01-fix-autotests.patch/ofxstatement-seb/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,37 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from distutils.core import setup
+
+version = '1.0.0'
+with open('README.rst', encoding = "utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-seb',
+      version=version,
+      author='Alexander Krasnukhin',
+      author_email='the.malk...@gmail.com',
+      url='https://github.com/themalkolm/ofxstatement-seb',
+      description=('ofxstatement plugins for SEB'),
+      long_description=long_description,
+      license='Apache License 2.0',
+      keywords=['ofx', 'ofxstatement', 'seb'],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent'
+      ],
+      packages=['ofxstatement', 'ofxstatement.plugins'],
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['seb = ofxstatement.plugins.seb:SebPlugin']
+      },
+      install_requires=['ofxstatement'],
+      test_suite='ofxstatement.plugins.tests',
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/02-be-argenta-do-not-install-script.patch/ofxstatement-be-argenta/setup.py ofxstatement-plugins-20210310+nmu1/.pc/02-be-argenta-do-not-install-script.patch/ofxstatement-be-argenta/setup.py
--- ofxstatement-plugins-20210310/.pc/02-be-argenta-do-not-install-script.patch/ofxstatement-be-argenta/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/02-be-argenta-do-not-install-script.patch/ofxstatement-be-argenta/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+from setuptools import find_packages
+from distutils.core import setup
+
+version = '1.0.5'
+with open('README.rst', encoding = "utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-argenta',
+      version=version,
+      author='Wout Breugelmans',
+      author_email='wout.breugelmans+ofxstatem...@gmail.com',
+      url='https://github.com/woutbr/ofxstatement-be-argenta',
+      description=('ofxstatement plugin for Argenta'),
+      long_description=long_description,
+      long_description_content_type='text/x-rst',
+      license='MIT',
+      keywords=['ofx', 'ofxstatement', 'argenta'],
+      classifiers=[
+          'Development Status :: 5 - Production/Stable',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: MIT License',
+      ],
+      packages=find_packages(),
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['argenta = ofxstatement.plugins.argenta:ArgentaPlugin'],
+          'console_scripts': ['ofx-argenta-convert = ofxstatement_be_argenta.convert:convert']
+      },
+      install_requires=[
+          'ofxstatement>=0.6.1',
+          'openpyxl',
+      ],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py ofxstatement-plugins-20210310+nmu1/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py
--- ofxstatement-plugins-20210310/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_gpc.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,54 @@
+import glob
+import logging
+import os.path
+import unittest
+
+from ofxstatement.plugins.gpc import GPCParser
+
+
+class TestParser(unittest.TestCase):
+    pass
+
+
+def test_generator(test_file_name):
+    def test_parser(self):
+        with open(test_file_name, 'rb') as test_file:
+            parser = GPCParser(test_file)
+            logging.debug('parser = dir {}'.format(dir(parser)))
+            records = parser.split_records()
+            self.assertGreater(len(list(records)), 0,
+                               "split input into records\nrecords = %s"
+                               % records)
+
+    def test_parseLine(self):
+        with open(test_file_name, 'rb') as test_file:
+            parser = GPCParser(test_file)
+            logging.debug('parser = dir {}'.format(dir(parser)))
+            for rec_str in parser.split_records():
+                rec = parser.parse_record(rec_str)
+                if rec is None:
+                    self.assertIsNotNone(parser.statement.start_balance)
+                else:
+                    self.assertIsNotNone(rec.id, "StatementLine NOT created")
+
+    return test_parser, test_parseLine
+
+
+def additional_tests():
+    suite = unittest.TestSuite()
+    test_samples_dir = os.path.join(
+        os.path.dirname(os.path.realpath(__file__)), "samples")
+    tests = glob.glob(os.path.join(test_samples_dir, '*.gpc'))
+    logging.debug('tests = {}'.format(tests))
+    for t in tests:
+        test_base = os.path.splitext(os.path.split(t)[1])[0]
+        test_core = 'test_%s' % test_base
+        tests = test_generator(t)
+        for test in zip(['parser', 'parseLine'], tests):
+            test_name = "{}_{}".format(test_core, test[0])
+            setattr(TestParser, test_name, test[1])
+            suite.addTest(TestParser(test_name))
+    return suite
+
+if __name__ == '__main__':
+    unittest.main()
diff -Nru ofxstatement-plugins-20210310/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py ofxstatement-plugins-20210310+nmu1/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py
--- ofxstatement-plugins-20210310/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/03-fix-pytest.patch/ofxstatement-czech/src/ofxstatement/plugins/tests/test_maxibps.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,46 @@
+import unittest
+import glob
+import os.path
+from ofxstatement.plugins.maxibps import PSTextFormatParser
+
+
+class TestParser(unittest.TestCase):
+    pass
+
+
+def test_generator(test_file_name):
+    def test_parser(self):
+        with open(test_file_name, "U", encoding="utf-8-sig") as test_file:
+            parser = PSTextFormatParser(test_file)
+            records = parser.split_records()
+            self.assertGreater(len(records), 0,
+                               "split input into records\nrecords = %s"
+                               % records)
+
+    def test_parseLine(self):
+        with open(test_file_name, "U", encoding="utf-8-sig") as test_file:
+            parser = PSTextFormatParser(test_file)
+            for rec_str in parser.split_records():
+                rec = parser.parse_record(rec_str)
+                self.assertIsNotNone(rec, "StatementLine created")
+
+    return test_parser, test_parseLine
+
+
+def additional_tests():
+    suite = unittest.TestSuite()
+    test_samples_dir = os.path.join(
+        os.path.dirname(os.path.realpath(__file__)), "samples")
+    tests = glob.glob(os.path.join(test_samples_dir, '*.txt'))
+    for t in tests:
+        test_base = os.path.splitext(os.path.split(t)[1])[0]
+        test_core = 'test_%s' % test_base
+        tests = test_generator(t)
+        for test in zip(['parser', 'parseLine'], tests):
+            test_name = "{}_{}".format(test_core, test[0])
+            setattr(TestParser, test_name, test[1])
+            suite.addTest(TestParser(test_name))
+    return suite
+
+if __name__ == '__main__':
+    unittest.main()
diff -Nru ofxstatement-plugins-20210310/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py ofxstatement-plugins-20210310+nmu1/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py
--- ofxstatement-plugins-20210310/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/dkb_cc.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,45 @@
+from ofxstatement.parser import CsvStatementParser
+from ofxstatement.plugin import Plugin
+from ofxstatement import statement
+import csv
+
+class DKBCCCsvStatementParser(CsvStatementParser):
+    mappings = {"date": 1, "memo": 3, "amount": 4}
+    date_format = "%d.%m.%Y"
+
+    def split_records(self):
+        return csv.reader(self.fin, delimiter=';')
+
+    def parse_record(self, line):
+        if self.cur_record  == 3:
+            self.statement.start_date=self.parse_datetime(line[1])
+            return None
+        if self.cur_record == 5:
+            self.statement.end_balance=self.parse_float(line[1].replace(' EUR',''))
+            return None
+        if self.cur_record == 6:
+            self.statement.end_date=self.parse_datetime(line[1])
+            return None
+
+        if self.cur_record == 8:
+            self.statement.currency=line[4].strip('Betrag (').strip(')')
+            return None
+
+        if self.cur_record <= 8:
+            return None
+        line[4]=line[4].replace('.','').replace(',','.')        
+        # fill statement line according to mappings
+        sl = super(DKBCCCsvStatementParser, self).parse_record(line)
+        return sl
+
+class DKBCCPlugin(Plugin):
+    """
+    Deutsche Kreditbank AG, CSV of creditcard statements
+    """
+    def get_parser(self, fin):
+        f = open(fin, "r",encoding='iso-8859-1')
+        parser=DKBCCCsvStatementParser(f)
+        parser.statement.account_id = self.settings['account']
+        parser.statement.bank_id = self.settings.get('bank', 'DKB_VISA')
+        return parser
+
diff -Nru ofxstatement-plugins-20210310/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py ofxstatement-plugins-20210310+nmu1/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py
--- ofxstatement-plugins-20210310/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/flatex.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,40 @@
+from ofxstatement.parser import CsvStatementParser
+from ofxstatement.plugin import Plugin
+from ofxstatement import statement
+import csv
+import re
+
+
+class FlatexCsvStatementParser(CsvStatementParser):
+    mappings = {"date": 0,"memo": 4, "amount": 5}
+    date_format = "%d.%m.%Y"
+
+    def split_records(self):
+        return csv.reader(self.fin, delimiter=';')
+ 
+    def parse_record(self, line):
+        #Lines with no information
+        if self.cur_record <= 1:
+            return None
+        
+        if self.statement.currency==None:
+            self.statement.currency=line[6]
+
+        #Change decimalsign from , to .
+        line[5]=line[5].replace('.','').replace(',','.')
+            
+        # fill statement line according to mappings
+        sl = super(FlatexCsvStatementParser, self).parse_record(line)
+        return sl    
+
+
+class FlatexPlugin(Plugin):
+    name = "flatex"
+    def get_parser(self, fin):
+        f = open(fin, "r",encoding='iso-8859-1')
+        parser=FlatexCsvStatementParser(f)
+        parser.statement.account_id = self.settings['account']
+        parser.statement.currency = None
+        parser.statement.bank_id = self.settings.get('bank', 'FLATEX_Cash') 
+        return parser
+
diff -Nru ofxstatement-plugins-20210310/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py ofxstatement-plugins-20210310+nmu1/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py
--- ofxstatement-plugins-20210310/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/04-fix-ofxstatement-6.5+-compatibility.patch/ofxstatement-bubbas/src/ofxstatement/plugins/lbbamazon.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,45 @@
+from ofxstatement.parser import CsvStatementParser
+from ofxstatement.plugin import Plugin
+from ofxstatement import statement
+import csv
+
+
+class LbbAmazonCsvStatementParser(CsvStatementParser):
+    mappings = {"date": 1, "memo": 3, "amount": 6}
+    date_format = "%d.%m.%Y"
+    ignore_amazon_points = False
+
+    def split_records(self):
+        return csv.reader(self.fin, delimiter=';')
+
+    def parse_record(self, line):
+        #Free Headerline
+        if self.cur_record <= 1:
+            return None
+
+        # Empty transactions to include amazon points
+        if line[6] == '':
+            if self.ignore_amazon_points:
+                return None 
+            line[6] = '0,00'
+        #Change decimalsign from , to .
+        line[6] = line[6].replace(',', '.')
+
+        # fill statement line according to mappings
+        sl = super(LbbAmazonCsvStatementParser, self).parse_record(line)
+        return sl
+
+
+class LbbAmazonPlugin(Plugin):
+    """
+    Landensbank Berlin AG, Amazon Creditcard CSV
+    """
+
+    def get_parser(self, fin):
+        f = open(fin, "r", encoding='iso-8859-1')
+        parser = LbbAmazonCsvStatementParser(f)
+        parser.statement.account_id = self.settings['account']
+        parser.statement.currency = self.settings['currency']
+        parser.statement.bank_id = self.settings.get('bank', 'LBB_Amazon')
+        parser.ignore_amazon_points = self.settings.get('ignore_amazon_points', 'false').lower() in ('true', 'yes', 'on')
+        return parser
diff -Nru ofxstatement-plugins-20210310/.pc/05-fix-interpreter.patch/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py ofxstatement-plugins-20210310+nmu1/.pc/05-fix-interpreter.patch/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py
--- ofxstatement-plugins-20210310/.pc/05-fix-interpreter.patch/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/05-fix-interpreter.patch/ofxstatement-intesasp/src/ofxstatement/plugins/intesaSP.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,137 @@
+#!/usr/bin/env python3.6
+
+from openpyxl import load_workbook
+from dataclasses import dataclass
+from datetime import datetime
+import logging
+
+from ofxstatement.plugin import Plugin
+from ofxstatement.parser import StatementParser
+from ofxstatement.statement import (Statement, StatementLine,
+                                    generate_transaction_id)
+
+logging.basicConfig(level=logging.DEBUG)
+logger = logging.getLogger('IntesaSP')
+
+
+@dataclass
+class Movimento:
+    data_contabile: datetime
+    data_valuta: datetime
+    descrizione: str
+    accrediti: float
+    addebiti: float
+    descrizione_estesa: str
+    mezzo: str
+
+
+class IntesaSanPaoloPlugin(Plugin):
+
+    def get_parser(self, filename):
+        parser = IntesaSanPaoloXlsxParser(filename)
+        parser.statement.bank_id = self.settings.get('BIC', 'IntesaSP')
+        return parser
+
+
+class IntesaSanPaoloXlsxParser(StatementParser):
+
+    def split_records(self):
+        return self._get_movimenti()
+
+    def __init__(self, filename):
+        self.fin = filename
+        self.statement = Statement()
+        self.statement.account_id = self._get_account_id()
+        self.statement.currency = self._get_currency()
+        self.statement.start_balance = self._get_start_balance()
+        self.statement.start_date = self._get_start_date()
+        self.statement.end_balance = self._get_end_balance()
+        self.statement.end_date = self._get_end_date()
+        logging.debug(self.statement)
+
+    def parse(self):
+        return super(IntesaSanPaoloXlsxParser, self).parse()
+
+    def parse_record(self, mov):
+        stat_line = StatementLine(None,
+                                  mov.data_contabile,
+                                  mov.descrizione_estesa,
+                                  mov.accrediti if mov.accrediti else
+                                  mov.addebiti)
+        stat_line.id = generate_transaction_id(stat_line)
+        stat_line.date_user = mov.data_valuta
+        stat_line.trntype = IntesaSanPaoloXlsxParser._get_transaction_type(mov)
+        logging.debug(stat_line)
+        return stat_line
+
+    def _get_account_id(self):
+        wb = load_workbook(self.fin)
+        return wb['Lista Movimenti']['D8'].value
+
+    def _get_currency(self):
+        trans_map = {'Euro': 'EUR'}
+        wb = load_workbook(self.fin)
+        val = wb['Lista Movimenti']['D22'].value
+        return trans_map[val]
+
+    def _get_movimenti(self):
+        wb = load_workbook(self.fin)
+        starting_column = 'A'
+        ending_column = 'G'
+        starting_row = 30
+        offset = 0
+
+        while True:
+            data = wb['Lista Movimenti'][
+                        '{}{}:{}{}'.format(starting_column,
+                                           starting_row + offset,
+                                           ending_column,
+                                           starting_row + offset
+                                           )]
+
+            values = [*map(lambda x: x.value, data[0])]
+            logging.debug(values)
+            if not values[0]:
+                break
+            else:
+                yield Movimento(*values)
+                offset += 1
+
+    def _get_transaction_type(movimento):
+        trans_map = {'Pagamento pos': 'POS',
+                     'Pagamento effettuato su pos estero': 'POS',
+                     'Accredito beu con contabile': 'XFER',
+                     'Canone mensile base e servizi aggiuntivi': 'SRVCHG',
+                     'Prelievo carta debito su banche del gruppo': 'CASH',
+                     'Prelievo carta debito su banche italia/sepa': 'CASH',
+                     'Versamento contanti su sportello automatico':
+                     'DIRECTDEP',
+                     'Comm.prelievo carta debito italia/sepa': 'SRVCHG',
+                     'Commiss. su beu internet banking': 'SRVCHG',
+                     'Pagamento telefono': 'PAYMENT',
+                     'Pagamento mav via internet banking': 'PAYMENT',
+                     'Pagamento bolletta cbill': 'PAYMENT',
+                     'Beu tramite internet banking': 'PAYMENT',
+                     'Commissione bolletta cbill': 'SRVCHG',
+                     'Storno pagamento pos': 'POS',
+                     'Storno pagamento pos estero': 'POS',
+                     'Versamento contanti su sportello automatico': 'ATM'}
+        return trans_map[movimento.descrizione]
+
+    def _get_start_balance(self):
+        wb = load_workbook(self.fin)
+        return float(wb['Lista Movimenti']['E11'].value)
+
+    def _get_end_balance(self):
+        wb = load_workbook(self.fin)
+        return float(wb['Lista Movimenti']['E12'].value)
+
+    def _get_start_date(self):
+        wb = load_workbook(self.fin)
+        date = wb['Lista Movimenti']['D11'].value
+        return datetime.strptime(date, '%d.%m.%Y')
+
+    def _get_end_date(self):
+        wb = load_workbook(self.fin)
+        date = wb['Lista Movimenti']['D12'].value
+        return datetime.strptime(date, '%d.%m.%Y')
diff -Nru ofxstatement-plugins-20210310/.pc/applied-patches ofxstatement-plugins-20210310+nmu1/.pc/applied-patches
--- ofxstatement-plugins-20210310/.pc/applied-patches	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/applied-patches	2022-11-05 18:34:18.000000000 +0200
@@ -0,0 +1,6 @@
+01-fix-autotests.patch
+02-be-argenta-do-not-install-script.patch
+03-fix-pytest.patch
+04-fix-ofxstatement-6.5+-compatibility.patch
+05-fix-interpreter.patch
+setuptools-60.patch
diff -Nru ofxstatement-plugins-20210310/.pc/.quilt_patches ofxstatement-plugins-20210310+nmu1/.pc/.quilt_patches
--- ofxstatement-plugins-20210310/.pc/.quilt_patches	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/.quilt_patches	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1 @@
+debian/patches
diff -Nru ofxstatement-plugins-20210310/.pc/.quilt_series ofxstatement-plugins-20210310+nmu1/.pc/.quilt_series
--- ofxstatement-plugins-20210310/.pc/.quilt_series	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/.quilt_series	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1 @@
+series
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/banking.statements.nordea/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/banking.statements.nordea/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/banking.statements.nordea/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/banking.statements.nordea/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,39 @@
+from setuptools import setup, find_packages
+import os
+
+version = '1.3.0'
+
+setup(name='banking.statements.nordea',
+      version=version,
+      description="Account statement reader plugin for Nordea of Finland",
+      long_description=open("README.md").read() + "\n" +
+           open(os.path.join("docs", "HISTORY.txt")).read(),
+      classifiers=[
+        "Programming Language :: Python",
+        'Development Status :: 4 - Beta',
+        'Programming Language :: Python :: 3',
+        'Natural Language :: English',
+        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
+        'Topic :: Office/Business :: Financial :: Accounting',
+        'Topic :: Utilities',
+        'Environment :: Console',
+        'Operating System :: OS Independent',
+        ],
+      keywords=['ofxstatement', 'ofx'],
+      author='Petri Savolainen',
+      author_email='petri.savolai...@koodaamo.fi',
+      url='https://github.com/koodaamo/banking.statements.nordea',
+      license='GPLv3',
+      packages=find_packages(exclude=['ez_setup']),
+      namespace_packages=['banking', 'banking.statements'],
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=[
+          'setuptools',
+          'ofxstatement'
+      ],
+      entry_points="""
+      [ofxstatement]
+      nordea = banking.statements.nordea.plugin:NordeaPlugin
+      """,
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/banking.statements.osuuspankki/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/banking.statements.osuuspankki/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/banking.statements.osuuspankki/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/banking.statements.osuuspankki/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,38 @@
+from setuptools import setup, find_packages
+import os
+
+version = '1.3.4.dev0'
+
+setup(name='banking.statements.osuuspankki',
+      version=version,
+      description="Account statement reader plugin for Osuuspankki of Finland",
+      long_description=open("README.md").read() + "\n" +
+                       open(os.path.join("docs", "HISTORY.txt")).read(),
+      classifiers=[
+        "Programming Language :: Python",
+        'Development Status :: 4 - Beta',
+        'Programming Language :: Python :: 3',
+        'Natural Language :: English',
+        'Topic :: Office/Business :: Financial :: Accounting',
+        'Topic :: Utilities',
+        'Environment :: Console',
+        'Operating System :: OS Independent',
+        ],
+      keywords=['ofxstatement','ofx'],
+      author='Petri Savolainen',
+      author_email='petri.savolai...@koodaamo.fi',
+      url='https://github.com/koodaamo/banking.statements.osuuspankki',
+      license='GPLv3',
+      namespace_packages = ['banking', 'banking.statements'],
+      packages = ['banking.statements.osuuspankki'],
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=[
+          'setuptools',
+          'ofxstatement'
+      ],
+      entry_points="""
+          [ofxstatement]
+          op = banking.statements.osuuspankki.plugin:OPPlugin
+      """
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-1822direkt/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-1822direkt/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-1822direkt/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-1822direkt/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.2"
+
+with open('../README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-germany-1822direkt',
+      version=version,
+      author="Mirko Dziadzka",
+      author_email="mirko.dziad...@gmail.com",
+      url="https://github.com/MirkoDziadzka/ofxstatement_germany";,
+      description=("ofxstatement plugin for Frankfurter Sparkasse / 1822direkt.com"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          [
+              'germany_1822direkt = ofxstatement.plugins.germany_1822direkt:FrankfurterSparkasse1822Plugin',
+          ]
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-airbankcz/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-airbankcz/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-airbankcz/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-airbankcz/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.5"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-airbankcz',
+      version=version,
+      author="Milan Knížek",
+      author_email="milan...@gmail.com",
+      url="https://github.com/milankni/ofxstatement-airbankcz";,
+      description=("Ofxstatement plugin for Air Bank a.s. (CZ) - current and saving accounts history"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['airbankcz = ofxstatement.plugins.airbankcz:AirBankCZPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-al_bank/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-al_bank/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-al_bank/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-al_bank/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,39 @@
+#!/usr/bin/python3
+
+from distutils.core import setup
+
+from setuptools import find_packages
+
+version = "0.2.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-al_bank',
+      version=version,
+      author="Leonardo Brondani Schenkel",
+      author_email="leona...@schenkel.net",
+      url="https://github.com/lbschenkel/ofxstatement-al_bank";,
+      description="Arbejdernes Landsbank plugin for ofxstatement",
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 4 - Beta',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement': ['al_bank = ofxstatement.plugins.al_bank:ALBankPlugin']
+      },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-austrian/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-austrian/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-austrian/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-austrian/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,56 @@
+#!/usr/bin/env python3
+# This file is part of ofxstatement-austrian.
+# See README.rst for more information.
+
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.4"
+
+with open("README.rst") as f:
+    long_description = f.read()
+
+setup(name="ofxstatement-austrian",
+      version=version,
+      author="Florian Preinstorfer",
+      author_email="nbl...@archlinux.us",
+      url="https://github.com/nblock/ofxstatement-austrian";,
+      description=("Statement parser for several austrian banks"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=[
+          "ofxstatement", "easybank", "ing-diba",
+          "livebank", "raiffeisen", "oberbank"],
+      classifiers=[
+          "Development Status :: 3 - Alpha",
+          "Programming Language :: Python :: 3",
+          "Programming Language :: Python :: 3.5",
+          "Programming Language :: Python :: 3.6",
+          "Programming Language :: Python :: 3.7",
+          "Programming Language :: Python :: 3.8",
+          "Natural Language :: English",
+          "Topic :: Office/Business :: Financial :: Accounting",
+          "Topic :: Utilities",
+          "Environment :: Console",
+          "Operating System :: OS Independent",
+          "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
+      packages=find_packages("src"),
+      package_dir={"": "src"},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          "ofxstatement":
+          [
+              "easybank = ofxstatement.plugins.easybank:EasybankPlugin",
+              "ing-diba = ofxstatement.plugins.ingdiba:IngDiBaPlugin",
+              "livebank = ofxstatement.plugins.livebank:LivebankPlugin",
+              "raiffeisen = ofxstatement.plugins.raiffeisen:RaiffeisenPlugin",
+              "oberbank = ofxstatement.plugins.oberbank:OberbankPlugin"
+          ]
+      },
+      install_requires=["ofxstatement"],
+      test_suite="ofxstatement.plugins.tests",
+      include_package_data=True,
+      zip_safe=True
+      )
+
+# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 smartindent autoindent
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-argenta/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-argenta/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-argenta/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-argenta/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,41 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+from setuptools import find_packages
+from distutils.core import setup
+
+version = '1.0.5'
+with open('README.rst', encoding = "utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-argenta',
+      version=version,
+      author='Wout Breugelmans',
+      author_email='wout.breugelmans+ofxstatem...@gmail.com',
+      url='https://github.com/woutbr/ofxstatement-be-argenta',
+      description=('ofxstatement plugin for Argenta'),
+      long_description=long_description,
+      long_description_content_type='text/x-rst',
+      license='MIT',
+      keywords=['ofx', 'ofxstatement', 'argenta'],
+      classifiers=[
+          'Development Status :: 5 - Production/Stable',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: MIT License',
+      ],
+      packages=find_packages(),
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['argenta = ofxstatement.plugins.argenta:ArgentaPlugin'],
+      },
+      install_requires=[
+          'ofxstatement>=0.6.1',
+          'openpyxl',
+      ],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-ing/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-ing/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-ing/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-ing/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,48 @@
+#!/usr/bin/python3
+"""Setup
+"""
+
+import os
+
+from setuptools import find_packages
+from setuptools.command.test import test as TestCommand
+from distutils.core import setup
+
+import unittest
+
+version = "0.1.1"
+
+with open('README.md') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-ing',
+      version=version,
+      author="Bernardo Bandos",
+      author_email="@hotmail.com",
+      url="https://github.com/jbbandos/ofxstatement-be-ing";,
+      description=("OFXStatement plugin for ING (Belgium)"),
+      long_description=open("README.md").read(),
+      long_description_content_type='text/markdown',
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 4 - Beta',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['ingbe = ofxstatement.plugins.ingbe:IngBePlugin']
+          },
+      install_requires=['ofxstatement'],
+      extras_require={'test': ["freezegun", "pytest"]},
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-kbc/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-kbc/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-kbc/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-kbc/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.2.0"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-kbc',
+      version=version,
+      author="Pieter Lenaerts",
+      author_email="pieter.aj.lenae...@gmail.com",
+      url="https://github.com/plenaerts/ofxstatement-be-kbc";,
+      description=("ofxstatement plugin for parsing Belgian KBC bank's CSV statements to OFX"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement", "kbc", "csv"],
+      classifiers=[
+          'Development Status :: 5 - Production/Stable',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['kbcbe = ofxstatement.plugins.kbcbe:KbcBePlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-keytrade/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-keytrade/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-keytrade/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-keytrade/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-keytrade',
+      version=version,
+      author="Serkan Eryilmaz",
+      author_email="s.eryil...@scotchy.be",
+      url="",
+      description=("OFXStatement plugin for KeytradeBank (Belgium)"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['keytrade = ofxstatement.plugins.keytrade:KeytradePlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-triodos/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-triodos/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-be-triodos/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-be-triodos/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-be-triodos',
+      version=version,
+      author="Bernard Butaye",
+      author_email="",
+      url="https://github.com/renardeau/ofxstatement-be-triodos";,
+      description=("ofxstatement plugin for parsing Belgian Triodos bank's CSV statements to OFX"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement", "triodos", "csv"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['triodosbe = ofxstatement.plugins.triodosbe:TriodosBePlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-betterment/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-betterment/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-betterment/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-betterment/setup.py	2020-05-05 10:44:20.000000000 +0200
@@ -0,0 +1,52 @@
+#!/usr/bin/python3
+"""Setup
+"""
+try:
+    from setuptools import setup
+except ImportError:
+    from distutils.core import setup
+
+with open('README.rst') as readme_file:
+    readme = readme_file.read()
+
+with open('HISTORY.rst') as history_file:
+    history = history_file.read().replace('.. :changelog:', '')
+
+requirements = [
+    'ofxstatement'
+]
+
+setup(name='ofxstatement-betterment',
+      version='0.3.1',
+      author="Chris Mayes",
+      author_email="cma...@cmay.es",
+      url="https://github.com/cmayes/ofxstatement-betterment";,
+      description="Betterment plugin for ofxstatement",
+      long_description=readme + '\n\n' + history,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 4 - Beta',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=[
+          'ofxstatement', 'ofxstatement.plugins',
+      ],
+      package_dir={'ofxstatement': 'ofxstatement',
+                   'ofxstatement.plugins': 'ofxstatement/plugins'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+              ['betterment = ofxstatement.plugins.betterment:BettermentPlugin']
+      },
+      install_requires=requirements,
+      include_package_data=True,
+      zip_safe=True,
+      test_suite='tests',
+      tests_require=requirements
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-bubbas/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-bubbas/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-bubbas/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-bubbas/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,43 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "1.0.0"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-bubbas',
+      version=version,
+      author="bubbas",
+      author_email="",
+      url="https://github.com/kedder/ofxstatement-bubbas";,
+      description=("ofxstatement plugins from bubbas"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "ofxstatement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['dkb_cc = ofxstatement.plugins.dkb_cc:DKBCCPlugin',
+           'lbbamazon = ofxstatement.plugins.lbbamazon:LbbAmazonPlugin',
+           'flatex = ofxstatement.plugins.flatex:FlatexPlugin']
+          },
+      install_requires=['ofxstatement'],
+      test_suite="ofxstatement.plugins.tests",
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-consors/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-consors/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-consors/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-consors/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-consors',
+      version=version,
+      author="Johannes Klug",
+      author_email="",
+      url="https://github.com/JohannesKlug/ofxstatement-consors";,
+      description=("Consors plugin for ofxstatement"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['consors = ofxstatement.plugins.consors:ConsorsPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-czech/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-czech/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-czech/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-czech/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "1.2.5"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-czech',
+      version=version,
+      author="Matěj Cepl",
+      author_email="mc...@cepl.eu",
+      url="https://gitlab.com/mcepl/ofxstatement-czech";,
+      description=("Czech banks plugin for ofxstatement"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "ofxstatement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['gpc = ofxstatement.plugins.gpc:GPCPlugin',
+           'maxibps = ofxstatement.plugins.maxibps:PSPlugin']
+      },
+      install_requires=['ofxstatement'],
+      test_suite="src.ofxstatement.plugins.tests",
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-dab/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-dab/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-dab/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-dab/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-dab',
+      version=version,
+      author="Johannes Klug",
+      author_email="j...@jklug.com",
+      url="https://github.com/JohannesKlug/ofxstatement-dab";,
+      description=("DAB plugin for ofxstatement"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['dab = ofxstatement.plugins.dab:DABPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-de-ing/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-de-ing/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-de-ing/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-de-ing/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.1.0"
+
+with open('ReadMe.md') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-de-ing',
+      version=version,
+      author="Faha",
+      author_email="dev-f...@t-online.de",
+      url="https://github.com/fabolhak/ofxstatement-de-ing";,
+      description=("OFXStatement plugin for ING (Germany / Deutschland)"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['ingde = ofxstatement.plugins.ingde:IngDePlugin']
+          },
+      install_requires=['ofxstatement'],
+      extras_require={'test': ["mock", "pytest", "pytest-cov"]},
+      tests_require=["mock"],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-de-triodos/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-de-triodos/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-de-triodos/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-de-triodos/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-de-triodos',
+      version=version,
+      author="pianoslum",
+      author_email="",
+      url="https://github.com/renardeau/ofxstatement-be-triodos";,
+      description=("ofxstatement plugin for parsing Belgian Triodos bank's CSV statements to OFX"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement", "triodos", "csv"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['triodosde = ofxstatement.plugins.triodosde:TriodosDePlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-fineco/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-fineco/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-fineco/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-fineco/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.5"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-fineco',
+      version=version,
+      author="Francesco Lorenzetti",
+      author_email="",
+      url="https://github.com/frankIT/ofxstatement-fineco";,
+      description=("italian bank Fineco, it parses both xls files available for private accounts"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement", "fineco"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['fineco = ofxstatement.plugins.fineco:FinecoPlugin']
+          },
+      install_requires=['ofxstatement', 'xlrd'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-intesasp/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-intesasp/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-intesasp/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-intesasp/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/env python3.6
+"""
+Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.1.3"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-intesasp',
+      version=version,
+      author="Di Campli D. Raffaele Jr",
+      author_email="dcdrj....@gmail.com",
+      url="https://github.com/Jacotsu/ofxstatement-intesasp";,
+      description=("Plugin for ofxstatement that supports Intesa San paolo"
+                   "xlsx file"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3.6',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['IntesaSP = ofxstatement.plugins.intesaSP:IntesaSanPaoloPlugin']
+          },
+      install_requires=['ofxstatement', 'openpyxl'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-is-arionbanki/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-is-arionbanki/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-is-arionbanki/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-is-arionbanki/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-is-arionbanki',
+      version=version,
+      author="Dagur Páll Ammendrup",
+      author_email="dag...@gmail.com",
+      url="https://github.com/Dagur/ofxstatement-is-arionbanki";,
+      description=("Arion bank plugin for ofxstatement"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement", "arion"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['arionbanki = ofxstatement.plugins.arionbanki:ArionBankiPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-iso20022/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-iso20022/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-iso20022/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-iso20022/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.5.1.dev0"
+
+with open("README.rst") as f:
+    long_description = f.read()
+
+setup(
+    name="ofxstatement-iso20022",
+    version=version,
+    author="Andrey Lebedev",
+    author_email="and...@lebedev.lt",
+    url="https://github.com/kedder/ofxstatement-iso20022";,
+    description=("ISO-20022 plugin for ofxstatement"),
+    long_description=long_description,
+    license="GPLv3",
+    keywords=["ofx", "banking", "statement", "iso-20022"],
+    classifiers=[
+        "Development Status :: 3 - Alpha",
+        "Programming Language :: Python :: 3",
+        "Natural Language :: English",
+        "Topic :: Office/Business :: Financial :: Accounting",
+        "Topic :: Utilities",
+        "Environment :: Console",
+        "Operating System :: OS Independent",
+        "License :: OSI Approved :: GNU Affero General Public License v3",
+    ],
+    packages=find_packages("src"),
+    package_dir={"": "src"},
+    namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+    entry_points={
+        "ofxstatement": ["iso20022 = ofxstatement.plugins.iso20022:Iso20022Plugin"]
+    },
+    install_requires=["ofxstatement"],
+    extras_require={"test": ["pytest"]},
+    include_package_data=True,
+    zip_safe=True,
+)
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-lansforsakringar/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-lansforsakringar/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-lansforsakringar/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-lansforsakringar/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,39 @@
+#!/usr/bin/python3
+
+from distutils.core import setup
+
+from setuptools import find_packages
+
+version = "0.2.0"
+
+with open('README.rst', mode='r', encoding='utf-8') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-lansforsakringar',
+      version=version,
+      author="Leonardo Brondani Schenkel",
+      author_email="leona...@schenkel.net",
+      url="https://github.com/lbschenkel/ofxstatement-lansforsakringar";,
+      description="Länsförsäkringar plugin for ofxstatement",
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 4 - Beta',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement': ['lansforsakringar = ofxstatement.plugins.lansforsakringar:LansforsakringarPlugin']
+      },
+      install_requires=['ofxstatement', 'xlrd'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-latvian/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-latvian/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-latvian/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-latvian/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,46 @@
+#!/usr/bin/python3
+"""Setup
+
+#Note: To publish new version: `./setup.py sdist upload`
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "1.3.2"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-latvian',
+      version=version,
+      author="Gints Murans",
+      author_email="g...@gm.lv",
+      url="https://github.com/gintsmurans/ofxstatement-latvian";,
+      description=("Statement parsers for banks operating in Latvia"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "ofxstatement", "banking", "statement", "latvia"],
+      classifiers=[
+          'Development Status :: 4 - Beta',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':[
+               'swedbankLV = ofxstatement.plugins.swedbankLV:SwedbankLVPlugin',
+               'dnbLV = ofxstatement.plugins.dnbLV:DnbLVPlugin',
+               'citadeleLV = ofxstatement.plugins.citadeleLV:CitadeleLVPlugin',
+               'sebLV = ofxstatement.plugins.sebLV:SebLVPlugin',
+           ]
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-lfs/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-lfs/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-lfs/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-lfs/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from setuptools import setup
+
+version = '0.0.1'
+with open('README.rst', encoding="utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-lfs',
+      version=version,
+      author='Alexander Krasnukhin',
+      author_email='the.malk...@gmail.com',
+      url='https://github.com/themalkolm/ofxstatement-lfs',
+      description=('ofxstatement plugins for Lansforsakringar'),
+      long_description=long_description,
+      license='MIT',
+      keywords=['ofx', 'ofxstatement', 'lfs', 'lansforsakringar'],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent'
+      ],
+      packages=['ofxstatement', 'ofxstatement.plugins'],
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['lfs = ofxstatement.plugins.lfs:LfsPlugin']
+      },
+      install_requires=[
+          'appdirs',
+          'ofxstatement',
+          'xlrd',
+      ],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-lithuanian/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-lithuanian/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-lithuanian/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-lithuanian/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,44 @@
+#!/usr/bin/python3
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "1.2.1.dev0"
+
+with open("README.rst") as f:
+    long_description = f.read()
+
+setup(
+    name="ofxstatement-lithuanian",
+    version=version,
+    author="Andrey Lebedev",
+    author_email="and...@lebedev.lt",
+    url="https://github.com/kedder/ofxstatement-lithuanian";,
+    description=("Statement parsers for banks, operatiing in Lithuania"),
+    long_description=long_description,
+    license="GPLv3",
+    keywords=["ofxstatement", "lithuanian"],
+    classifiers=[
+        "Development Status :: 3 - Alpha",
+        "Programming Language :: Python :: 3",
+        "Natural Language :: English",
+        "Topic :: Office/Business :: Financial :: Accounting",
+        "Topic :: Utilities",
+        "Environment :: Console",
+        "Operating System :: OS Independent",
+        "License :: OSI Approved :: GNU Affero General Public License v3",
+    ],
+    packages=find_packages("src"),
+    package_dir={"": "src"},
+    namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+    entry_points={
+        "ofxstatement": [
+            "litas-esis = ofxstatement.plugins.litas_esis:LitasEsisPlugin",
+            "swedbank = ofxstatement.plugins.swedbank:SwedbankPlugin",
+            "danske = ofxstatement.plugins.danske:DanskePlugin",
+        ]
+    },
+    install_requires=["ofxstatement>=0.7.0"],
+    test_suite="ofxstatement.plugins.tests",
+    include_package_data=True,
+    zip_safe=True,
+)
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-mbank-sk/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-mbank-sk/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-mbank-sk/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-mbank-sk/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-mbank.sk',
+      version=version,
+      author="Andrey Lebedev",
+      author_email="and...@lebedev.lt",
+      url="https://github.com/kedder/ofxstatement";,
+      description=("MBank.sk plugin for ofxstatement"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['mbank.sk = ofxstatement.plugins.mbank_sk:MBankSKPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-otp/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-otp/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-otp/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-otp/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,43 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.6"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-otp',
+      version=version,
+      author="Zoltan Nagy",
+      author_email="abe...@abesto.net",
+      url="https://github.com/abesto/ofxstatement-otp";,
+      description=("ofxstatement plugin for the Hungarian bank OTP"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          [
+              'otp = ofxstatement.plugins.otp:OtpPlugin',
+              'otp_credit = ofxstatement.plugins.otp_credit:OtpCreditPlugin'
+          ]
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/_ofxstatement-paypal/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/_ofxstatement-paypal/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/_ofxstatement-paypal/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/_ofxstatement-paypal/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,36 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from setuptools import setup
+
+version = '1.0.0'
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-paypal',
+      version=version,
+      author='Alexander Krasnukhin',
+      author_email='the.malk...@gmail.com',
+      url='https://github.com/themalkolm/ofxstatement-paypal',
+      description=('ofxstatement plugins for paypal'),
+      long_description=long_description,
+      license='Apache License 2.0',
+      keywords=['ofx', 'ofxstatement', 'paypal'],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent'
+      ],
+      packages=['ofxstatement', 'ofxstatement.plugins'],
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['paypal = ofxstatement.plugins.paypal:PayPalPlugin']
+      },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-polish/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-polish/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-polish/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-polish/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,46 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-polish',
+      version=version,
+      author="Jakub Janeczko",
+      author_email="jjane...@gmail.com",
+      url="https://github.com/jjajo/ofxstatement-polish";,
+      description=("Polish bank statement parsers"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['banksmart = ofxstatement.plugins.banksmart:BankSMARTPlugin',
+           'db.pl = ofxstatement.plugins.db_pl:DBPLPlugin',
+           'mbank.pl = ofxstatement.plugins.mbank_pl:MBankPLPlugin',
+           'millennium = ofxstatement.plugins.millennium:MillenniumPlugin',
+           'paypal = ofxstatement.plugins.paypal:PaypalPlugin',
+           'raiffeisen-polbank = ofxstatement.plugins.raiffeisen_polbank:RaiffeisenPolbankPlugin',
+           'walutomat = ofxstatement.plugins.walutomat:WalutomatPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-postbank/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-postbank/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-postbank/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-postbank/setup.py	2019-11-14 11:40:31.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.2"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-germany-postbank',
+      version=version,
+      author="Mirko Dziadzka",
+      author_email="mirko.dziad...@gmail.com",
+      url="https://github.com/MirkoDziadzka/ofxstatement_germany";,
+      description=("ofxstatement plugin for German Postbank"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          [
+              'germany_postbank = ofxstatement.plugins.germany_postbank:PostbankXMLPlugin'
+          ]
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-postfinance/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-postfinance/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-postfinance/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-postfinance/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.1"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-postfinance',
+      version=version,
+      author="Max Rydahl Andersen",
+      author_email="pyt...@xam.dk",
+      url="https://github.com/maxandersen/ofxstatement-postfinance";,
+      description=("ofxstatement for Post Finance (Swiss)"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement", "swiss", "post"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['pf-bank-tab = ofxstatement.plugins.postfinance:PostFinanceBank']
+            },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-raiffeisencz/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-raiffeisencz/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-raiffeisencz/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-raiffeisencz/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,40 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.4"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-raiffeisencz',
+      version=version,
+      author="Milan Knížek",
+      author_email="milan...@gmail.com",
+      url="https://github.com/milankni/ofxstatement-raiffeisencz";,
+      description=("Ofxstatement plugin for Raiffeisenbank a.s. (Czech Republic) - eKonto CSV history"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['raiffeisencz = ofxstatement.plugins.raiffeisencz:RaiffeisenCZPlugin']
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-russian/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-russian/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-russian/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-russian/setup.py	2021-01-08 15:17:55.000000000 +0200
@@ -0,0 +1,48 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.2"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-russian',
+      version=version,
+      author="Alexander Gerasiov",
+      author_email="g...@cs.msu.su",
+      url="https://github.com/gerasiov/ofxstatement-russian";,
+      description=("Russian banks plugins for ofxstatement"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofxstatement", "russian", "avangard", "tinkoff", "sberbank", "alfabank", "vtb"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+              [
+                  'avangard = ofxstatement.plugins.avangard:AvangardPlugin',
+                  'tinkoff = ofxstatement.plugins.tinkoff:TinkoffPlugin',
+                  'sberbank_csv = ofxstatement.plugins.sberbank_csv:SberBankCSVPlugin',
+                  'sberbank_txt = ofxstatement.plugins.sberbank_txt:SberBankTxtPlugin',
+                  'alfabank = ofxstatement.plugins.alfabank:AlfabankPlugin',
+                  'vtb = ofxstatement.plugins.vtb:VtbPlugin',
+              ]
+          },
+      install_requires=['ofxstatement'],
+      test_suite="ofxstatement.plugins.tests",
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-seb/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-seb/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-seb/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-seb/setup.py	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1,36 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from setuptools import setup
+
+version = '1.0.0'
+with open('README.rst', encoding = "utf-8") as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-seb',
+      version=version,
+      author='Alexander Krasnukhin',
+      author_email='the.malk...@gmail.com',
+      url='https://github.com/themalkolm/ofxstatement-seb',
+      description=('ofxstatement plugins for SEB'),
+      long_description=long_description,
+      license='Apache License 2.0',
+      keywords=['ofx', 'ofxstatement', 'seb'],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent'
+      ],
+      packages=['ofxstatement', 'ofxstatement.plugins'],
+      namespace_packages=['ofxstatement', 'ofxstatement.plugins'],
+      entry_points={
+          'ofxstatement': ['seb = ofxstatement.plugins.seb:SebPlugin']
+      },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-simple/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-simple/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-simple/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-simple/setup.py	2019-11-14 11:40:32.000000000 +0200
@@ -0,0 +1,52 @@
+#!/usr/bin/python3
+"""Setup
+"""
+try:
+    from setuptools import setup
+except ImportError:
+    from distutils.core import setup
+
+with open('README.rst') as readme_file:
+    readme = readme_file.read()
+
+with open('HISTORY.rst') as history_file:
+    history = history_file.read().replace('.. :changelog:', '')
+
+requirements = [
+    'ofxstatement'
+]
+
+setup(name='ofxstatement-simple',
+      version='0.1.0',
+      author="Chris Mayes",
+      author_email="cma...@cmay.es",
+      url="https://github.com/cmayes/ofxstatement-simple";,
+      description="Simple (the bank) plugin for ofxstatement",
+      long_description=readme + '\n\n' + history,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU Affero General Public License v3'],
+      packages=[
+          'ofxstatement', 'ofxstatement.plugins',
+      ],
+      package_dir={'ofxstatement': 'ofxstatement',
+                   'ofxstatement.plugins': 'ofxstatement/plugins'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+              ['simple = ofxstatement.plugins.simple:SimpleBankPlugin']
+      },
+      install_requires=requirements,
+      include_package_data=True,
+      zip_safe=True,
+      test_suite='tests',
+      tests_require=requirements
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-unicreditcz/setup.py ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-unicreditcz/setup.py
--- ofxstatement-plugins-20210310/.pc/setuptools-60.patch/ofxstatement-unicreditcz/setup.py	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/setuptools-60.patch/ofxstatement-unicreditcz/setup.py	2020-12-26 20:34:46.000000000 +0200
@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+"""Setup
+"""
+from setuptools import find_packages
+from distutils.core import setup
+
+version = "0.0.4"
+
+with open('README.rst') as f:
+    long_description = f.read()
+
+setup(name='ofxstatement-unicreditcz',
+      version=version,
+      author="Milan Knížek",
+      author_email="kni...@volny.cz",
+      url="https://github.com/milankni/ofxstatement-unicreditcz";,
+      description=("Ofxstatement plugin for UniCredit Bank Czech & Slovak Republic (export of account history in CSV)"),
+      long_description=long_description,
+      license="GPLv3",
+      keywords=["ofx", "banking", "statement"],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Programming Language :: Python :: 3',
+          'Natural Language :: English',
+          'Topic :: Office/Business :: Financial :: Accounting',
+          'Topic :: Utilities',
+          'Environment :: Console',
+          'Operating System :: OS Independent',
+          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=["ofxstatement", "ofxstatement.plugins"],
+      entry_points={
+          'ofxstatement':
+          ['unicreditcz16 = ofxstatement.plugins.unicreditcz16:UniCreditCZ16Plugin',
+           'unicreditcz17 = ofxstatement.plugins.unicreditcz17:UniCreditCZ17Plugin',
+           'unicreditcz = ofxstatement.plugins.unicreditcz:UniCreditCZPlugin',]
+          },
+      install_requires=['ofxstatement'],
+      include_package_data=True,
+      zip_safe=True
+      )
diff -Nru ofxstatement-plugins-20210310/.pc/.version ofxstatement-plugins-20210310+nmu1/.pc/.version
--- ofxstatement-plugins-20210310/.pc/.version	1970-01-01 02:00:00.000000000 +0200
+++ ofxstatement-plugins-20210310+nmu1/.pc/.version	2022-11-05 18:34:12.000000000 +0200
@@ -0,0 +1 @@
+2

Reply via email to