~ubuntu-branches/ubuntu/raring/sphinxtrain/raring-proposed

« back to all changes in this revision

Viewing changes to python/setup.py

  • Committer: Package Import Robot
  • Author(s): Samuel Thibault
  • Date: 2013-01-02 04:10:21 UTC
  • Revision ID: package-import@ubuntu.com-20130102041021-ynsizmz33fx02hea
Tags: upstream-1.0.8
ImportĀ upstreamĀ versionĀ 1.0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
from distutils.core import setup, Extension
 
4
 
 
5
setup(name='SphinxTrain',
 
6
      version='1.0',
 
7
      description='SphinxTrain Python modules',
 
8
      author='David Huggins-Daines',
 
9
      author_email='dhuggins@cs.cmu.edu',
 
10
      url='http://www.cmusphinx.org/',
 
11
      packages=['cmusphinx', 'cmusphinx.feat'],
 
12
      requires=['numpy', 'scipy'],
 
13
      )