diff options
author | Leandro Regueiro <leandro.regueiro@gmail.com> | 2020-03-18 20:45:35 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2020-05-17 14:27:21 +0200 |
commit | 0d5b8b154945cc3cdcea5ddfd0676332b4cf5ad4 (patch) | |
tree | 74d11bb4fe2665999274a6f9a94c3462db9a517b /stdnum/sg/__init__.py | |
parent | 4eda3f3535d28e2486745f33504c417ba6837c3a (diff) |
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
Diffstat (limited to 'stdnum/sg/__init__.py')
-rw-r--r-- | stdnum/sg/__init__.py | 24 |
1 files changed, 24 insertions, 0 deletions
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 |