From dfd0ff94e323495d3351cd4931990e886bf7a49f Mon Sep 17 00:00:00 2001 From: Lilykos Date: Wed, 2 Nov 2016 21:47:29 +0100 Subject: [PATCH] First commit. --- README.rst | 5 +++++ flit.ini | 15 +++++++++++++++ pyphonetics/__init__.py | 4 ++++ pyphonetics/phonetics/__init__.py | 1 + pyphonetics/phonetics/soundex.py | 0 5 files changed, 25 insertions(+) create mode 100644 README.rst create mode 100644 flit.ini create mode 100644 pyphonetics/__init__.py create mode 100644 pyphonetics/phonetics/__init__.py create mode 100644 pyphonetics/phonetics/soundex.py diff --git a/README.rst b/README.rst new file mode 100644 index 0000000000000000000000000000000000000000..0b5cbf3effdce326d18c07e500c8bd2d5a3595a4 --- /dev/null +++ b/README.rst @@ -0,0 +1,5 @@ +=========== +Pyphonetics +=========== + +A Python 3 phonetics library. \ No newline at end of file diff --git a/flit.ini b/flit.ini new file mode 100644 index 0000000000000000000000000000000000000000..3c0c73e4c065584b2c759e278c7206e241297e16 --- /dev/null +++ b/flit.ini @@ -0,0 +1,15 @@ +[metadata] +module=pyphonetics +author=Lilykos +author-email=lilykosk@gmail.com +home-page=http://github.com/Lilykos/pyphonetics +description-file=README.rst +classifiers=Intended Audience :: Developers + Programming Language :: Python :: 3 + Topic :: Software Development :: Libraries :: Python Modules + +# If you want command line scripts, this is how to declare them. +# If not, you can leave this section out completely. +# [scripts] +# # foobar:main means the script will do: from foobar import main; main() +# foobar=foobar:main \ No newline at end of file diff --git a/pyphonetics/__init__.py b/pyphonetics/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e562a219fca963b2a2c7ff5716e775f335d1fc57 --- /dev/null +++ b/pyphonetics/__init__.py @@ -0,0 +1,4 @@ +"""A Python 3 phonetics library.""" +from .phonetics import * + +__version__ = '0.1' diff --git a/pyphonetics/phonetics/__init__.py b/pyphonetics/phonetics/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..71d6ce2c682e2a9bc7740b7159a83304fecf6753 --- /dev/null +++ b/pyphonetics/phonetics/__init__.py @@ -0,0 +1 @@ +from .soundex import * diff --git a/pyphonetics/phonetics/soundex.py b/pyphonetics/phonetics/soundex.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391