-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.78 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
from setuptools import setup, find_packages
long_description = """XphoneBR is a portuguese transformer base grapheme-to-phoneme normalization tool modeling library that leverages recent deep learning
technology and is optimized for usage in production systems such as TTS. In particular, the library should
be accurate, fast, easy to use.
DeepPhonemizerBR is compatible with Python 3.6+ and is distributed under the MIT license.
"""
#
# Version: 0.0.7
setup(
name="xphonebr",
version="0.0.7",
author="Emerson Pedroso",
author_email="[email protected]",
description="Grapheme to phoneme conversion and tools for tts with deep learning.",
long_description=long_description,
long_description_content_type="text/x-rst",
license="MIT",
install_requires=[
"tqdm>=4.38.0",
"deep-phonemizer==0.0.19",
"num2words==0.5.12",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
package_data={"": ["*.yaml"]},
)