~linuxgoose/linguistics-robin

dfd0ff94e323495d3351cd4931990e886bf7a49f — Lilykos 9 years ago
First commit.
A  => README.rst +5 -0
@@ 1,5 @@
===========
Pyphonetics
===========

A Python 3 phonetics library.
\ No newline at end of file

A  => flit.ini +15 -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

A  => pyphonetics/__init__.py +4 -0
@@ 1,4 @@
"""A Python 3 phonetics library."""
from .phonetics import *

__version__ = '0.1'

A  => pyphonetics/phonetics/__init__.py +1 -0
@@ 1,1 @@
from .soundex import *

A  => pyphonetics/phonetics/soundex.py +0 -0