File: setup.py

package info (click to toggle)
python-espeak 0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: cpp: 298; python: 67; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/env python

from distutils.core import setup, Extension

module = Extension('espeak.core',
	sources = ['espeak/espeakmodulecore.cpp'],
	libraries = ['espeak'])

setup(
    name = 'python-espeak',
    version = '0.5',
    description = 'Python bindings for the eSpeak speech synthesizer',
    author = 'Siegfried-A. Gevatter Pujals',
    author_email = 'rainct@ubuntu.com',
    url = 'https://launchpad.net/python-espeak',
    license = 'GPL',
    platforms = 'posix',
    ext_modules = [module],
    packages = ['espeak'],
    )