Skip to content

Commit 394826f

Browse files
committed
0.1.6: add README.md to setup
1 parent 621b81d commit 394826f

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

setup.py

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,26 @@
22

33
from setuptools import setup, find_packages
44

5-
setup(name ='py-espeak-ng',
6-
version ='0.1.5',
7-
description ='Python interface for eSpeak NG',
8-
url ='https://github.com/gooofy/py-espeak-ng',
9-
classifiers = [
10-
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
11-
'Topic :: Multimedia :: Sound/Audio :: Speech',
12-
'Operating System :: POSIX :: Linux',
13-
'License :: OSI Approved :: Apache Software License',
14-
'Programming Language :: Python :: 2',
15-
'Programming Language :: Python :: 2.7',
16-
'Programming Language :: Python :: 3',
17-
'Programming Language :: Python :: 3.4',
18-
],
19-
keywords = 'eSpeak NG TTS text to speech interface',
20-
platforms = 'Linux',
21-
license = 'Apache',
22-
package_dir = {'espeakng': 'espeakng'},
23-
packages = ['espeakng'],
24-
author = "Guenter Bartsch",
25-
author_email = "[email protected]",
5+
setup(name ='py-espeak-ng',
6+
version ='0.1.6',
7+
description ='Python interface for eSpeak NG',
8+
long_description = open('README.md').read(),
9+
url ='https://github.com/gooofy/py-espeak-ng',
10+
classifiers = [
11+
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
12+
'Topic :: Multimedia :: Sound/Audio :: Speech',
13+
'Operating System :: POSIX :: Linux',
14+
'License :: OSI Approved :: Apache Software License',
15+
'Programming Language :: Python :: 2',
16+
'Programming Language :: Python :: 2.7',
17+
'Programming Language :: Python :: 3',
18+
'Programming Language :: Python :: 3.4',
19+
],
20+
keywords = 'eSpeak NG TTS text to speech interface',
21+
platforms = 'Linux',
22+
license = 'Apache',
23+
package_dir = {'espeakng': 'espeakng'},
24+
packages = ['espeakng'],
25+
author = "Guenter Bartsch",
26+
author_email = "[email protected]",
2627
)

0 commit comments

Comments
 (0)