-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.59 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 1.59 KB
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
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup
# Version
with open(path.join(path.dirname(__file__), 'cmudict', 'VERSION')) as version_file:
VERSION = version_file.read().strip()
# Long Description
with open(path.join(path.dirname(__file__), 'README.rst')) as readme_file:
LONG_DESCRIPTION = readme_file.read()
setup(
name='cmudict',
version=VERSION,
description='A versioned python wrapper package for The CMU Pronouncing Dictionary data files.',
long_description=LONG_DESCRIPTION,
author='David L. Day',
author_email='dday376@gmail.com',
url='https://github.com/prosegrinder/python-cmudict',
packages=[
'cmudict'
],
package_dir={'cmudict': 'cmudict'},
package_data={
'': ['LICENSE', '*.rst', 'MANIFEST.in'],
'cmudict': [
'VERSION',
'data/cmudict.*',
'data/LICENSE',
'data/README',
'data/README.developer'
]
},
include_package_data=True,
zip_safe=False,
license='GPL-3.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)