diff --git a/README.md b/README.md index e33004e..5673df9 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@

Transipy: The Powerful and Fastest Document Translation Tool

- Transipy is your one-stop solution for lightning-fast and accurate document translation. With its parallel processing capabilities, Transipy effortlessly handles large volumes of data in various formats, including CSV, TXT, and XLSX. + Transipy is your one-stop solution for lightning-fast and accurate document translation. With its parallel processing capabilities, Transipy effortlessly handles large volumes of data in various formats, including CSV, TXT, DOCX, and XLSX.
Explore the docs ยป
@@ -126,7 +126,7 @@ options: Example: ```bash -transipy -f path_to_file.[csv, tsv, txt, xlsx] -s -t +transipy -f path_to_file.[csv, tsv, txt, xlsx, docx] -s -t ``` #### Translate a file with a dictionary diff --git a/setup.py b/setup.py index 767dfd9..a4b1b46 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def get_requirements(path: str): setup( name='transipy', - version='1.0.3', + version='1.0.4', description='Transipy is your one-stop solution for lightning-fast and accurate document translation.', long_description=long_description, long_description_content_type="text/markdown", diff --git a/transipy/main.py b/transipy/main.py index 693b9ee..dc0d025 100644 --- a/transipy/main.py +++ b/transipy/main.py @@ -143,5 +143,5 @@ def main(): output_file=output_file ) else: - logger.error("Unsupported file format. Please use .csv/.tsv/.txt or .xlsx files.") + logger.error("Unsupported file format. Please use .csv/.tsv/.txt/docx or .xlsx files.") return \ No newline at end of file