-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
executable file
·60 lines (56 loc) · 2.36 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python
# coding=utf-8
#
# cmudict-tools setup script
#
# Copyright (C) 2015 Reece H. Dunn
#
# This file is part of cmudict-tools.
#
# cmudict-tools is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cmudict-tools is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cmudict-tools. If not, see <http://www.gnu.org/licenses/>.
import codecs
from setuptools import setup
def read_file(filename, encoding='utf-8'):
with codecs.open(filename, 'r', encoding) as f:
return f.read()
setup(name='cmudict-tools',
version='1.0',
description='Tools for working with cmudict and festlex pronunciation dictionaries.',
long_description=read_file('README.rst'),
url='https://github.com/rhdunn/cmudict-tools',
author='Reece H. Dunn',
author_email='msclrhd@gmail.com',
license='GPLv3+',
classifiers=[ # See: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
],
keywords='cmudict festlex pronunciation dictionary parse sort format filter',
packages=['cmudicttools'],
package_data = {
'cmudicttools': ['accents/*.csv', 'pos-tags/COPYING', 'pos-tags/README.md', 'pos-tags/*.ttl', 'pos-tags/model/*.ttl'],
},
scripts=['cmudict-tools'])