forked from AdolfVonKleist/Phonetisaurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1001 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
from setuptools import setup
#Install phonetisaurus
setup (name = 'phonetisaurus',
version = '0.2',
description = 'Phonetisaurus G2P python package',
url = 'http://code.google.com/p/phonetisaurus',
author = 'Josef Novak',
author_email = 'josef.robert.novak@gmail.com',
license = 'BSD',
packages = ['phonetisaurus'],
package_data = {'' : ['Phonetisaurus.so']},
include_package_data = True,
zip_safe = False)
#Install the RnnLM bindings
setup (name = 'rnnlm',
version = '0.1',
description = 'RnnLM python bindings.',
url = 'http://code.google.com/p/phonetisaurus',
author = 'Josef Novak',
author_email = 'josef.robert.novak@gmail.com',
license = 'BSD',
packages = ['rnnlm'],
package_data = {'' : ['RnnLM.so']},
include_package_data = True,
zip_safe = False)