-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
31 lines (29 loc) · 1.63 KB
/
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
29
30
from setuptools import setup
setup(
name = 'py-nltools',
version = '0.4.0',
description = 'A collection of basic python modules for spoken natural language processing',
long_description = open('README.adoc').read(),
author = 'Guenter Bartsch',
author_email = 'guenter@zamia.org',
maintainer = 'Guenter Bartsch',
maintainer_email = 'guenter@zamia.org',
url = 'https://github.com/gooofy/py-nltools',
packages = ['nltools'],
install_requires = [
'num2words', 'py-marytts', 'py-picotts', 'py-espeak-ng', 'pocketsphinx', 'py-kaldi-asr', 'numpy', 'webrtcvad', 'setproctitle'
],
classifiers = [
'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.5',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
license = 'Apache',
keywords = 'natural language processing tokenizer nlp tts asr speech synthesis recognition',
)