File: setup.py

package info (click to toggle)
sphinxtrain 1.0.8%2B5prealpha%2B1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,356 kB
  • sloc: ansic: 36,168; sh: 11,156; perl: 8,175; python: 5,620; cpp: 2,037; makefile: 1,552
file content (13 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup, Extension

setup(name='SphinxTrain',
      version='1.0',
      description='SphinxTrain Python modules',
      author='David Huggins-Daines',
      author_email='dhuggins@cs.cmu.edu',
      url='http://www.cmusphinx.org/',
      packages=['cmusphinx', 'cmusphinx.feat'],
      requires=['numpy', 'scipy'],
      )