forked from nidhaloff/deep-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
87 lines (75 loc) · 2.72 KB
/
setup.cfg
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
83
84
85
86
87
#main config
[metadata]
name = deep-translator
version = 1.5.0
url = https://github.com/nidhaloff/deep_translator
author = Nidhal Baccouri
author_email = [email protected]
maintainer = Nidhal Baccouri
maintainer_email = [email protected]
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
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
license = MIT
license_files = file:LICENSE
description = A flexible python tool to translate between different languages in a simple way.
long_description = file:README.rst
long_description_content_type = text/x-rst
keywords = deep_translator, deepL, DeepL, translator, translation, automation,
web scraping, google translator, google translation, google trans, PONS,
YANDEX, MyMemory translator, Linguee, QCRI, Language, Language detection,
detect language, free translation, unlimited translation, translate for free
[build_sphinx]
version = 1.5.0
release = 1.5.0
# TODO: These can be switched back on if the CI platform changes from Travis. Travis still requires setup.py to function properly.
# [options]
# zip_safe = 0
# setup_requires = pytest-runner
# install_requires = requests; beautifulsoup4; click
# python_requires = >=3.0
# tests_require = pytest>=3
# include_package_data = 1
# packages = find:
# package_dir = =deep_translator
# [options.entry_points]
# console_scripts = deep-translator = deep_translator.__main__:deep_translator
# dt = deep_translator.__main__:deep_translator
# [options.packages.find]
# where = deep_translator
# TODO: This can be removed once Sphinx confirms it reads the version tags from here. The tags might be simplified by referencing metadata.version
# bumpversion config
# [bumpversion]
# current_version = 1.4.4
# commit = True
# tag = True
# [bumpversion:file:setup.py]
# search = version='{current_version}'
# replace = version='{new_version}'
# [bumpversion:file:deep_translator/__init__.py]
# search = __version__ = '{current_version}'
# replace = __version__ = '{new_version}'
# TODO: These are all optional settings, turned on for now since they exist already.
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
collect_ignore = [setup.py]