Files
pysle/setup.py
T
Tim Mahrt 5d598b1b88 INITIAL COMMIT: pysle - python interface to ISLEX dictionary
Code tested over a decent corpus.  Features:

- look up phone and syllable info for the
  canonical pronunciation of a word

- map an actual pronunciation to a dictionary
  pronunciation (can be used to automatically find
  speech errors)

- automatically syllabify a textgrid containing words
  and phones (e.g. force-aligned text)
2014-10-23 15:13:07 -05:00

16 lines
432 B
Python

'''
Created on Oct 15, 2014
@author: tmahrt
'''
from distutils.core import setup
setup(name='pysle',
version='1.0.0',
author='Tim Mahrt',
author_email='timmahrt@gmail.com',
package_dir={'pysle':'pysle'},
packages=['pysle'],
license='LICENSE',
long_description=open('README.rst', 'r').read(),
# install_requires=[], # No requirements! # requires 'from setuptools import setup'
)