deepl-haystack 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {deepl_haystack-0.2.0 → deepl_haystack-0.2.1}/PKG-INFO +1 -1
- {deepl_haystack-0.2.0 → deepl_haystack-0.2.1}/deepl_haystack/__init__.py +1 -4
- deepl_haystack-0.2.0/deepl_haystack/components/translators/deepl/translator.py → deepl_haystack-0.2.1/deepl_haystack/components.py +1 -1
- {deepl_haystack-0.2.0 → deepl_haystack-0.2.1}/pyproject.toml +1 -1
- {deepl_haystack-0.2.0 → deepl_haystack-0.2.1}/LICENSE +0 -0
- {deepl_haystack-0.2.0 → deepl_haystack-0.2.1}/README.md +0 -0
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from importlib.metadata import PackageNotFoundError, version
|
|
4
4
|
|
|
5
|
-
from .components
|
|
6
|
-
DeepLDocumentTranslator,
|
|
7
|
-
DeepLTextTranslator,
|
|
8
|
-
)
|
|
5
|
+
from .components import DeepLDocumentTranslator, DeepLTextTranslator
|
|
9
6
|
|
|
10
7
|
try:
|
|
11
8
|
__version__ = version(__name__)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "deepl-haystack"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Haystack integration with DeepL translation services provider."
|
|
5
5
|
authors = ["Albert Iribarne <iribarne@dribia.com>"]
|
|
6
6
|
maintainers = ["Albert Iribarne <iribarne@dribia.com>", "Dribia Data Research <code@dribia.com>"]
|
|
File without changes
|
|
File without changes
|