Chris Trenthem
commited on
Commit
·
0706c16
1
Parent(s):
41742b2
modified version numbers
Browse files- deep_translator/__init__.py +14 -14
deep_translator/__init__.py
CHANGED
@@ -12,18 +12,18 @@ from .detection import single_detection, batch_detection
|
|
12 |
from .microsoft import MicrosoftTranslator
|
13 |
|
14 |
# TODO: Discussion: These should be declared in setup.cfg, setting them here is redundant
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
12 |
from .microsoft import MicrosoftTranslator
|
13 |
|
14 |
# TODO: Discussion: These should be declared in setup.cfg, setting them here is redundant
|
15 |
+
__author__ = """Nidhal Baccouri"""
|
16 |
+
__email__ = '[email protected]'
|
17 |
+
__version__ = '1.5.0'
|
18 |
|
19 |
+
__all__ = [GoogleTranslator,
|
20 |
+
PonsTranslator,
|
21 |
+
LingueeTranslator,
|
22 |
+
MyMemoryTranslator,
|
23 |
+
YandexTranslator,
|
24 |
+
MicrosoftTranslator,
|
25 |
+
QCRI,
|
26 |
+
DeepL,
|
27 |
+
main,
|
28 |
+
single_detection,
|
29 |
+
batch_detection]
|