mirror of
https://github.com/wassname/pysle.git
synced 2026-06-27 16:10:05 +08:00
5d598b1b88
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)
16 lines
432 B
Python
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'
|
|
) |