From 0d5b8b154945cc3cdcea5ddfd0676332b4cf5ad4 Mon Sep 17 00:00:00 2001 From: Leandro Regueiro Date: Wed, 18 Mar 2020 20:45:35 +0100 Subject: Add support for Singapore Unique Entity Number Closes https://github.com/arthurdejong/python-stdnum/issues/111 Closes https://github.com/arthurdejong/python-stdnum/pull/203 --- stdnum/sg/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 stdnum/sg/__init__.py (limited to 'stdnum/sg/__init__.py') diff --git a/stdnum/sg/__init__.py b/stdnum/sg/__init__.py new file mode 100644 index 0000000..1d3e79d --- /dev/null +++ b/stdnum/sg/__init__.py @@ -0,0 +1,24 @@ +# __init__.py - collection of Singapore numbers +# coding: utf-8 +# +# Copyright (C) 2020 Leandro Regueiro +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA + +"""Collection of Singapore numbers.""" + +# provide aliases +from stdnum.sg import uen as vat # noqa: F401 -- cgit v1.2.3