Skip to content

Commit

Permalink
0.1.6: add README.md to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
gooofy committed Jul 13, 2018
1 parent 621b81d commit 394826f
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@

from setuptools import setup, find_packages

setup(name ='py-espeak-ng',
version ='0.1.5',
description ='Python interface for eSpeak NG',
url ='https://github.com/gooofy/py-espeak-ng',
classifiers = [
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
keywords = 'eSpeak NG TTS text to speech interface',
platforms = 'Linux',
license = 'Apache',
package_dir = {'espeakng': 'espeakng'},
packages = ['espeakng'],
author = "Guenter Bartsch",
author_email = "[email protected]",
setup(name ='py-espeak-ng',
version ='0.1.6',
description ='Python interface for eSpeak NG',
long_description = open('README.md').read(),
url ='https://github.com/gooofy/py-espeak-ng',
classifiers = [
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
keywords = 'eSpeak NG TTS text to speech interface',
platforms = 'Linux',
license = 'Apache',
package_dir = {'espeakng': 'espeakng'},
packages = ['espeakng'],
author = "Guenter Bartsch",
author_email = "[email protected]",
)

0 comments on commit 394826f

Please sign in to comment.