File size: 2,478 Bytes
9b3a5e3
 
82a1d37
7162fd1
9b3a5e3
 
a05c704
af51ec2
9b3a5e3
 
 
f89616a
3cf3c77
9b3a5e3
 
 
 
 
 
 
 
 
 
 
 
 
d3c12a3
 
9b3a5e3
 
cb15d3a
9b3a5e3
 
a22d18a
 
9b3a5e3
 
ab4bd52
9b3a5e3
 
 
 
 
 
78d0ff1
7a05cd7
05f33d2
cb15d3a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
05f33d2
1616574
9b3a5e3
3cf3c77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "deep-translator"
version = "1.10.0"
description = "A flexible free and unlimited python tool to translate between different languages in a simple way using multiple translators"
license = "MIT"
authors = ["Nidhal Baccouri <[email protected]>"]
maintainers = ["Nidhal Baccouri <[email protected]>", "Chris Trenthem <[email protected]>"]
readme = "docs/README.rst"
homepage = "https://github.com/nidhaloff/deep_translator"
repository = "https://github.com/nidhaloff/deep_translator"
documentation = "https://deep-translator.readthedocs.io/en/latest/"
keywords = ["deep_translator", "deepL", "DeeplTranslator", "translator", "translation", "automation", "web scraping", "google translator", "google translation", "google trans", "PONS", "YANDEX", "MyMemory translator", "Linguee", "QcriTranslator", "Language", "Language detection", "detect language", "free translation", "unlimited translation", "translate for free"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Intended Audience :: Education",
    "Intended Audience :: Information Technology",
    "License :: OSI Approved :: MIT License",
    "Topic :: Education",
    "Topic :: Software Development",
    "Topic :: Communications",
    "Topic :: Text Processing",
    "Topic :: Text Processing :: Linguistic",
    "Operating System :: OS Independent"]
packages = [{include="deep_translator"}]
[tool.poetry.scripts]
deep-translator = 'deep_translator.__main__:main'
dt = 'deep_translator.__main__:main'

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
beautifulsoup4 = "^4.9.1"
requests = "^2.23.0"
docx2txt = {version = "^0.8", extras = ["docx"]}
pypdf = {version = "^3.3.0", extras = ["pdf"]}

[tool.poetry.dev-dependencies]
wheel = "^0.38.4"
coverage = "^5.5"
Sphinx = "^4.1.1"
twine = "^3.4.2"
pytest = "^6.2.4"
pytest-runner = "^5.3.1"
toml = "^0.10.2"
black = "^22.1.0"
isort = "^5.10.1"
python-semantic-release = "^7.26.0"
pre-commit = "^3.0.4"
autoflake = "^2.0.1"

[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
    \.git
  | \.hg
  | \.mypy_cache
  | \.tox
  | \.venv
  | _build
  | buck-out
  | build
  | dist
)/
'''

[tool.isort]
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true

[tool.pycln]
all = true

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"