python-stdnum branch master updated. 1.13-23-g417b500
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
python-stdnum branch master updated. 1.13-23-g417b500
- From: Commits of the python-stdnum project <python-stdnum-commits [at] lists.arthurdejong.org>
- To: python-stdnum-commits [at] lists.arthurdejong.org
- Reply-to: python-stdnum-users [at] lists.arthurdejong.org, python-stdnum-commits [at] lists.arthurdejong.org
- Subject: python-stdnum branch master updated. 1.13-23-g417b500
- Date: Sat, 25 Apr 2020 21:53:08 +0200 (CEST)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".
The branch, master has been updated
via 417b50028255e54097f2a0bf49f8a9f0f7064705 (commit)
from ff866189643c8bac6e60e456973d805478b56091 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-stdnum/commit/?id=417b50028255e54097f2a0bf49f8a9f0f7064705
commit 417b50028255e54097f2a0bf49f8a9f0f7064705
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Sun Apr 19 15:05:49 2020 +0200
Flake 8 fixes
diff --git a/setup.cfg b/setup.cfg
index 010134a..da1f59a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -45,3 +45,7 @@ max-line-length = 120
[isort]
lines_after_imports = 2
multi_line_output = 4
+known_third_party =
+ lxml
+ requests
+ xlrd
diff --git a/setup.py b/setup.py
index c5eff04..f340218 100755
--- a/setup.py
+++ b/setup.py
@@ -39,45 +39,47 @@ base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, 'README'), 'rb') as fp:
long_description = fp.read().decode('utf-8')
-setup(name='python-stdnum',
- version=stdnum.__version__,
- description='Python module to handle standardized numbers and codes',
- long_description=long_description,
- author='Arthur de Jong',
- author_email='arthur@arthurdejong.org',
- url='https://arthurdejong.org/python-stdnum/',
- license='LGPL',
- classifiers=[
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- 'Intended Audience :: Financial and Insurance Industry',
- 'Intended Audience :: Information Technology',
- 'Intended Audience :: Telecommunications Industry',
- 'License :: OSI Approved :: GNU Lesser General Public License v2 or
later (LGPLv2+)',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3.8',
- 'Programming Language :: Python :: Implementation :: PyPy',
- 'Topic :: Office/Business :: Financial',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- 'Topic :: Text Processing :: General',
- ],
- packages=find_packages(),
- package_data={'': ['*.dat']},
- extras_require={
- # The SOAP feature is only required for a number of online tests
- # of numbers such as the EU VAT VIES lookup, the Dominican Republic
- # DGII services or the Turkish T.C. Kimlik validation.
- 'SOAP': ['zeep'], # recommended implementation
- 'SOAP-ALT': ['suds'], # but this should also work
- 'SOAP-FALLBACK': ['PySimpleSOAP'], # this is a fallback
- },
- )
+setup(
+ name='python-stdnum',
+ version=stdnum.__version__,
+ description='Python module to handle standardized numbers and codes',
+ long_description=long_description,
+ author='Arthur de Jong',
+ author_email='arthur@arthurdejong.org',
+ url='https://arthurdejong.org/python-stdnum/',
+ license='LGPL',
+ classifiers=[
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: Financial and Insurance Industry',
+ 'Intended Audience :: Information Technology',
+ 'Intended Audience :: Telecommunications Industry',
+ 'License :: OSI Approved :: GNU Lesser General Public License v2 or
later (LGPLv2+)',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: Implementation :: PyPy',
+ 'Topic :: Office/Business :: Financial',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Topic :: Text Processing :: General',
+ ],
+ packages=find_packages(),
+ install_requires=[],
+ package_data={'': ['*.dat']},
+ extras_require={
+ # The SOAP feature is only required for a number of online tests
+ # of numbers such as the EU VAT VIES lookup, the Dominican Republic
+ # DGII services or the Turkish T.C. Kimlik validation.
+ 'SOAP': ['zeep'], # recommended implementation
+ 'SOAP-ALT': ['suds'], # but this should also work
+ 'SOAP-FALLBACK': ['PySimpleSOAP'], # this is a fallback
+ },
+)
diff --git a/tox.ini b/tox.ini
index ad60f8b..98e2735 100644
--- a/tox.ini
+++ b/tox.ini
@@ -31,7 +31,7 @@ deps = flake8
flake8-tidy-imports
flake8-tuple
pep8-naming
-commands = flake8 stdnum tests update *.py
+commands = flake8 stdnum tests update setup.py
[testenv:docs]
deps = Sphinx<3
-----------------------------------------------------------------------
Summary of changes:
setup.cfg | 4 +++
setup.py | 86 ++++++++++++++++++++++++++++++++-------------------------------
tox.ini | 2 +-
3 files changed, 49 insertions(+), 43 deletions(-)
hooks/post-receive
--
python-stdnum
- python-stdnum branch master updated. 1.13-23-g417b500,
Commits of the python-stdnum project