-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd261a7
commit be150bb
Showing
11 changed files
with
116 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,78 @@ | ||
[metadata] | ||
name = t2s | ||
version = attr: t2s.__version__ | ||
url = https://quo.rtfd.io | ||
project_urls = | ||
Donate = https://tinyurl.com/ygaj5fwj | ||
Documentation = https://quo.rtfd.io | ||
Changes = https://quo.readthedocs.io/en/latest/changes.html | ||
Source Code = https://github.com/secretum-inc/quo | ||
Issue Tracker = https://github.com/secretum-inc/quo/issues/ | ||
Twitter = https://twitter.com/secretum_inc | ||
Chat = https://gitter.im/secretum-inc | ||
license = MIT | ||
license_files = LICENSE | ||
description = t2s(Text-to-Speech), a Python library and CLI tool to interface with Google Translate text-to-speech API | ||
author = Gerrishon Sirere | ||
author_email = [email protected] | ||
maintainer = Secretum Inc. | ||
maintainer_email = [email protected] | ||
description = Python based toolkit for writing Command-Line Interface applications | ||
author_email = [email protected] | ||
url = https://github.com/secretum-inc/t2s | ||
license = MIT | ||
keywords = | ||
t2s | ||
text to speech | ||
Google Translate | ||
T2S | ||
classifiers = | ||
Environment :: Console | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Operating System :: MacOS | ||
Operating System :: Unix | ||
Operating System :: POSIX | ||
Operating System :: POSIX :: Linux | ||
Operating System :: Microsoft :: Windows | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Topic :: Software Development :: Libraries | ||
Topic :: Multimedia :: Sound/Audio :: Speech | ||
license_file = LICENSE | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
|
||
[options] | ||
python_requires = >= 3.6 | ||
include_package_data = True | ||
packages = find: | ||
package_dir = = src | ||
include_package_data = true | ||
python_requires = >= 3.6.1 | ||
# Dependencies are in setup.py for GitHub's dependency graph. | ||
install_requires = | ||
six | ||
quo | ||
requests | ||
|
||
[options.packages.find] | ||
where = src | ||
[options.extras_require] | ||
tests = | ||
pytest == 4.6.11 | ||
pytest-cov | ||
flake8 | ||
testfixtures | ||
mock | ||
six | ||
docs = | ||
sphinx | ||
sphinx-autobuild | ||
sphinx_rtd_theme | ||
sphinx-click | ||
towncrier | ||
|
||
[tool:pytest] | ||
testpaths = tests | ||
filterwarnings = | ||
error | ||
|
||
[coverage:run] | ||
branch = true | ||
source = | ||
quo | ||
tests | ||
|
||
[coverage:paths] | ||
source = | ||
quo | ||
*/site-packages | ||
[options.entry_points] | ||
console_scripts = | ||
t2s-cli = t2s.cli:t2s_cli | ||
|
||
[flake8] | ||
# B = bugbear | ||
# E = pycodestyle errors | ||
# F = flake8 pyflakes | ||
# W = pycodestyle warnings | ||
# B9 = bugbear opinions, | ||
# ISC = implicit str concat | ||
select = B, E, F, W, B9, ISC | ||
ignore = | ||
# slice notation whitespace, invalid | ||
E203 | ||
# line length, handled by bugbear B950 | ||
E501 | ||
# bare except, handled by bugbear B001 | ||
E722 | ||
# bin op line break, invalid | ||
W503 | ||
# up to 88 allowed by bugbear B950 | ||
max-line-length = 80 | ||
per-file-ignores = | ||
# __init__ module exports names | ||
src/quo/__init__.py: F401 | ||
max-line-length = 132 | ||
exclude = .git,__pycache__,.eggs/,doc/,docs/,build/,dist/,archive/ | ||
ignore = W605, W503, W504 | ||
|
||
[mypy] | ||
files = src/quo | ||
python_version = 3.6.1 | ||
disallow_subclassing_any = True | ||
disallow_untyped_calls = True | ||
disallow_untyped_defs = True | ||
disallow_incomplete_defs = True | ||
check_untyped_defs = True | ||
no_implicit_optional = True | ||
local_partial_types = True | ||
no_implicit_reexport = True | ||
strict_equality = True | ||
warn_redundant_casts = True | ||
warn_unused_configs = True | ||
warn_unused_ignores = True | ||
warn_return_any = True | ||
warn_unreachable = True | ||
|
||
[mypy-colorama.*] | ||
ignore_missing_imports = True | ||
[coverage:run] | ||
cover_pylib = false | ||
omit = | ||
*/site-packages/* | ||
t2s/tests/* | ||
t2s/tokenizer/tests/* | ||
|
||
[mypy-importlib_metadata.*] | ||
ignore_missing_imports = True | ||
[coverage:report] | ||
exclude_lines = | ||
pragma: no cover | ||
def __repr__ | ||
log.debug | ||
log.warning |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
|
||
__all__ = ['T2S', 'gTTSError'] | ||
|
||
__version__ = "2021.1" | ||
__version__ = "2021.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.