-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
77 lines (72 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
# coding=utf-8
"""
Set ipapy package up.
"""
from setuptools import setup, Extension
import io
__author__ = "Alberto Pettarin"
__copyright__ = "Copyright 2016, Alberto Pettarin (www.albertopettarin.it)"
__license__ = "MIT"
__email__ = "alberto@albertopettarin.it"
__version__ = "0.0.9"
__status__ = "Production"
setup(
name="ipapy",
packages=["ipapy", "ipapy.data"],
package_data={"ipapy.data": ["*.dat"]},
version="0.0.9.0",
description="ipapy is a Python module to work with IPA strings",
author="Alberto Pettarin",
author_email="alberto@albertopettarin.it",
url="https://github.com/pettarin/ipapy",
license="MIT License",
long_description=io.open("README.rst", "r", encoding="utf-8").read(),
install_requires=[],
scripts=["bin/ipapy"],
keywords=[
"ipapy",
"International Phonetic Alphabet",
"IPA",
"ASCII IPA",
"ASCIIIPA",
"ASCII-IPA",
"Kirshenbaum",
"Kirshenbaum IPA",
"Unicode",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Documentation",
"Topic :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Localization",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
],
)