[Python-modules-commits] [codicefiscale] 02/03: Import codicefiscale_0.9+ds0.orig.tar.gz

Elena Grandi valhalla-guest at moszumanska.debian.org
Thu Aug 18 20:03:02 UTC 2016


This is an automated email from the git hooks/post-receive script.

valhalla-guest pushed a commit to branch master
in repository codicefiscale.

commit 17af93009cca44b19f03c4057962d382861af37f
Author: Elena Grandi <valhalla-d at trueelena.org>
Date:   Thu Aug 18 21:59:27 2016 +0200

    Import codicefiscale_0.9+ds0.orig.tar.gz
---
 PKG-INFO                                    | 97 -----------------------------
 codicefiscale.egg-info/PKG-INFO             | 97 -----------------------------
 codicefiscale.egg-info/SOURCES.txt          |  8 ---
 codicefiscale.egg-info/dependency_links.txt |  1 -
 codicefiscale.egg-info/top_level.txt        |  1 -
 codicefiscale.egg-info/zip-safe             |  1 -
 6 files changed, 205 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
deleted file mode 100644
index b374bb1..0000000
--- a/PKG-INFO
+++ /dev/null
@@ -1,97 +0,0 @@
-Metadata-Version: 1.1
-Name: codicefiscale
-Version: 0.9
-Summary: Python library for Italian fiscal code (codicefiscale)
-Home-page: https://github.com/ema/pycodicefiscale
-Author: Emanuele Rocca
-Author-email: ema at linux.it
-License: LGPL
-Download-URL: https://github.com/ema/pycodicefiscale/downloads
-Description: 
-        Python library for Italian fiscal code
-        
-        codicefiscale is a Python library for working with Italian fiscal code numbers
-        officially known as Italy's Codice Fiscale.
-        
-        Copyright (C) 2009-2016 Emanuele Rocca
-        
-        Homepage: https://github.com/ema/pycodicefiscale
-        
-        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
-        
-        
-        codicefiscale Module Documentation
-        ==================================
-        
-        A quick example
-        ---------------
-        >>> import datetime
-        >>> from codicefiscale import build
-        >>>
-        >>> build('Rocca', 'Emanuele', datetime.datetime(1983, 11, 18), 'M', 'D969')
-        'RCCMNL83S18D969H'
-        
-        Module Contents
-        ---------------
-        ``build(surname, name, birthday, sex, municipality) -> string``
-        
-            Computes the fiscal code for the given person data.
-        
-            eg: build('Rocca', 'Emanuele', datetime.datetime(1983, 11, 18), 'M', 'D969') 
-                -> RCCMNL83S18D969H
-            
-        
-        
-        ``control_code(input_string) -> int``
-        
-            Computes the control code for the given input_string string. The expected
-            input_string is the first 15 characters of a fiscal code.
-        
-            eg: control_code('RCCMNL83S18D969') -> 'H'
-            
-        
-        
-        ``get_birthday(code) -> string``
-        
-            Birthday of the person whose fiscal code is 'code', in the format DD-MM-YY. 
-        
-            Unfortunately it's not possible to guess the four digit birth year, given
-            that the Italian fiscal code uses only the last two digits (1983 -> 83).
-            Therefore, this function returns a string and not a datetime object.
-        
-            eg: birthday('RCCMNL83S18D969H') -> 18-11-83
-            
-        
-        
-        ``get_sex(code) -> string``
-        
-            The sex of the person whose fiscal code is 'code'.
-        
-            eg: sex('RCCMNL83S18D969H') -> 'M'
-                sex('CNTCHR83T41D969D') -> 'F'
-            
-        
-        
-        ``isvalid(code) -> bool``
-        
-            This function checks if the given fiscal code is syntactically valid.
-        
-            eg: isvalid('RCCMNL83S18D969H') -> True
-                isvalid('RCCMNL83S18D969') -> False
-            
-        
-        
-        
-Platform: UNKNOWN
diff --git a/codicefiscale.egg-info/PKG-INFO b/codicefiscale.egg-info/PKG-INFO
deleted file mode 100644
index b374bb1..0000000
--- a/codicefiscale.egg-info/PKG-INFO
+++ /dev/null
@@ -1,97 +0,0 @@
-Metadata-Version: 1.1
-Name: codicefiscale
-Version: 0.9
-Summary: Python library for Italian fiscal code (codicefiscale)
-Home-page: https://github.com/ema/pycodicefiscale
-Author: Emanuele Rocca
-Author-email: ema at linux.it
-License: LGPL
-Download-URL: https://github.com/ema/pycodicefiscale/downloads
-Description: 
-        Python library for Italian fiscal code
-        
-        codicefiscale is a Python library for working with Italian fiscal code numbers
-        officially known as Italy's Codice Fiscale.
-        
-        Copyright (C) 2009-2016 Emanuele Rocca
-        
-        Homepage: https://github.com/ema/pycodicefiscale
-        
-        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
-        
-        
-        codicefiscale Module Documentation
-        ==================================
-        
-        A quick example
-        ---------------
-        >>> import datetime
-        >>> from codicefiscale import build
-        >>>
-        >>> build('Rocca', 'Emanuele', datetime.datetime(1983, 11, 18), 'M', 'D969')
-        'RCCMNL83S18D969H'
-        
-        Module Contents
-        ---------------
-        ``build(surname, name, birthday, sex, municipality) -> string``
-        
-            Computes the fiscal code for the given person data.
-        
-            eg: build('Rocca', 'Emanuele', datetime.datetime(1983, 11, 18), 'M', 'D969') 
-                -> RCCMNL83S18D969H
-            
-        
-        
-        ``control_code(input_string) -> int``
-        
-            Computes the control code for the given input_string string. The expected
-            input_string is the first 15 characters of a fiscal code.
-        
-            eg: control_code('RCCMNL83S18D969') -> 'H'
-            
-        
-        
-        ``get_birthday(code) -> string``
-        
-            Birthday of the person whose fiscal code is 'code', in the format DD-MM-YY. 
-        
-            Unfortunately it's not possible to guess the four digit birth year, given
-            that the Italian fiscal code uses only the last two digits (1983 -> 83).
-            Therefore, this function returns a string and not a datetime object.
-        
-            eg: birthday('RCCMNL83S18D969H') -> 18-11-83
-            
-        
-        
-        ``get_sex(code) -> string``
-        
-            The sex of the person whose fiscal code is 'code'.
-        
-            eg: sex('RCCMNL83S18D969H') -> 'M'
-                sex('CNTCHR83T41D969D') -> 'F'
-            
-        
-        
-        ``isvalid(code) -> bool``
-        
-            This function checks if the given fiscal code is syntactically valid.
-        
-            eg: isvalid('RCCMNL83S18D969H') -> True
-                isvalid('RCCMNL83S18D969') -> False
-            
-        
-        
-        
-Platform: UNKNOWN
diff --git a/codicefiscale.egg-info/SOURCES.txt b/codicefiscale.egg-info/SOURCES.txt
deleted file mode 100644
index 9cc61f4..0000000
--- a/codicefiscale.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-README.rst
-codicefiscale.py
-setup.py
-codicefiscale.egg-info/PKG-INFO
-codicefiscale.egg-info/SOURCES.txt
-codicefiscale.egg-info/dependency_links.txt
-codicefiscale.egg-info/top_level.txt
-codicefiscale.egg-info/zip-safe
\ No newline at end of file
diff --git a/codicefiscale.egg-info/dependency_links.txt b/codicefiscale.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/codicefiscale.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/codicefiscale.egg-info/top_level.txt b/codicefiscale.egg-info/top_level.txt
deleted file mode 100644
index 1c0bf4a..0000000
--- a/codicefiscale.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-codicefiscale
diff --git a/codicefiscale.egg-info/zip-safe b/codicefiscale.egg-info/zip-safe
deleted file mode 100644
index 8b13789..0000000
--- a/codicefiscale.egg-info/zip-safe
+++ /dev/null
@@ -1 +0,0 @@
-

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/codicefiscale.git



More information about the Python-modules-commits mailing list