-
Notifications
You must be signed in to change notification settings - Fork 61
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
603cdce
commit e953d46
Showing
4 changed files
with
7 additions
and
11 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
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,14 +5,14 @@ | |
setup( | ||
name = "translatepy", | ||
packages = ["translatepy"], | ||
version = "1.5.2", | ||
version = "1.6", | ||
license = "GNU General Public License v3 (GPLv3)", | ||
description = "Translate, transliterate, get the language of texts in no time with the help of multiple APIs!", | ||
author = "Anime no Sekai", | ||
author_email = "[email protected]", | ||
url = "https://github.com/Animenosekai/translate", | ||
download_url = "https://github.com/Animenosekai/translate/archive/v1.5.2.tar.gz", | ||
keywords = ['python', 'translate', 'translation', 'google-translate', 'yandex-translate', 'bing-translate', 'reverso', 'transliteration', 'detect-language'], | ||
download_url = "https://github.com/Animenosekai/translate/archive/v1.6.tar.gz", | ||
keywords = ['python', 'translate', 'translation', 'google-translate', 'yandex-translate', 'bing-translate', 'reverso', 'transliteration', 'detect-language', 'text-to-speech'], | ||
install_requires = ['safeIO>=1.2', 'requests', 'beautifulsoup4', 'typing; python_version<"3.5"'], | ||
classifiers = ['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9'], | ||
long_description = readme_description, | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
__copyright__ = 'Copyright 2021, translate' | ||
__credits__ = ['animenosekai'] | ||
__license__ = 'GNU General Public License v3 (GPLv3)' | ||
__version__ = 'translatepy v1.6 (Beta)' | ||
__version__ = 'translatepy v1.6' | ||
__maintainer__ = 'Anime no Sekai' | ||
__email__ = '[email protected]' | ||
__status__ = 'Stable' |
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,5 +1,5 @@ | ||
""" | ||
translatepy v1.6 (Beta) | ||
translatepy v1.6 (Stable) | ||
© Anime no Sekai — 2021 | ||
""" | ||
|