nidhal baccouri
commited on
Commit
·
7168aee
1
Parent(s):
e8eddb4
fixed setup.cfg
Browse files
Makefile
CHANGED
@@ -74,7 +74,7 @@ servedocs: docs ## compile the docs watching for changes
|
|
74 |
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
|
75 |
|
76 |
release: dist ## package and upload a release
|
77 |
-
twine upload dist/*
|
78 |
|
79 |
dist: clean ## builds source and wheel package
|
80 |
python3 setup.py sdist
|
|
|
74 |
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
|
75 |
|
76 |
release: dist ## package and upload a release
|
77 |
+
twine upload dist/* --verbose
|
78 |
|
79 |
dist: clean ## builds source and wheel package
|
80 |
python3 setup.py sdist
|
setup.cfg
CHANGED
@@ -1,38 +1,37 @@
|
|
1 |
#main config
|
2 |
[metadata]
|
3 |
-
name =
|
4 |
version = 1.5.0
|
5 |
url = https://github.com/nidhaloff/deep_translator
|
6 |
author = Nidhal Baccouri
|
7 |
author_email = [email protected]
|
8 |
maintainer = Nidhal Baccouri
|
9 |
maintainer_email = [email protected]
|
10 |
-
classifiers =
|
11 |
-
Development Status :: 5 - Production/Stable
|
12 |
-
Intended Audience :: Developers
|
13 |
-
Intended Audience :: Education
|
14 |
-
Intended Audience :: Information Technology
|
15 |
-
License :: OSI Approved :: MIT License
|
16 |
-
Topic :: Education
|
17 |
-
Topic :: Software Development
|
18 |
-
Topic :: Communications
|
19 |
-
Topic :: Text Processing
|
20 |
-
Topic :: Text Processing :: Linguistic
|
21 |
-
|
22 |
-
|
23 |
-
Programming Language :: Python :: 3
|
24 |
-
Programming Language :: Python :: 3.
|
25 |
-
Programming Language :: Python :: 3.
|
26 |
-
Programming Language :: Python :: 3.7,
|
27 |
Programming Language :: Python :: 3.8
|
28 |
license = MIT
|
29 |
license_files = file:LICENSE
|
30 |
description = A flexible python tool to translate between different languages in a simple way.
|
31 |
long_description = file:README.rst
|
32 |
-
long_description_content_type = text/rst
|
33 |
-
keywords = deep_translator, deepL, DeepL, translator, translation, automation,
|
34 |
-
web scraping, google translator, google translation, google trans, PONS,
|
35 |
-
YANDEX, MyMemory translator, Linguee, QCRI, Language, Language detection,
|
36 |
detect language, free translation, unlimited translation, translate for free
|
37 |
|
38 |
[build_sphinx]
|
|
|
1 |
#main config
|
2 |
[metadata]
|
3 |
+
name = deep-translator
|
4 |
version = 1.5.0
|
5 |
url = https://github.com/nidhaloff/deep_translator
|
6 |
author = Nidhal Baccouri
|
7 |
author_email = [email protected]
|
8 |
maintainer = Nidhal Baccouri
|
9 |
maintainer_email = [email protected]
|
10 |
+
classifiers =
|
11 |
+
Development Status :: 5 - Production/Stable
|
12 |
+
Intended Audience :: Developers
|
13 |
+
Intended Audience :: Education
|
14 |
+
Intended Audience :: Information Technology
|
15 |
+
License :: OSI Approved :: MIT License
|
16 |
+
Topic :: Education
|
17 |
+
Topic :: Software Development
|
18 |
+
Topic :: Communications
|
19 |
+
Topic :: Text Processing
|
20 |
+
Topic :: Text Processing :: Linguistic
|
21 |
+
Operating System :: OS Independent
|
22 |
+
Programming Language :: Python :: 3
|
23 |
+
Programming Language :: Python :: 3.5
|
24 |
+
Programming Language :: Python :: 3.6
|
25 |
+
Programming Language :: Python :: 3.7
|
|
|
26 |
Programming Language :: Python :: 3.8
|
27 |
license = MIT
|
28 |
license_files = file:LICENSE
|
29 |
description = A flexible python tool to translate between different languages in a simple way.
|
30 |
long_description = file:README.rst
|
31 |
+
long_description_content_type = text/x-rst
|
32 |
+
keywords = deep_translator, deepL, DeepL, translator, translation, automation,
|
33 |
+
web scraping, google translator, google translation, google trans, PONS,
|
34 |
+
YANDEX, MyMemory translator, Linguee, QCRI, Language, Language detection,
|
35 |
detect language, free translation, unlimited translation, translate for free
|
36 |
|
37 |
[build_sphinx]
|
setup.py
CHANGED
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|
5 |
setup(
|
6 |
zip_safe=False,
|
7 |
setup_requires=['pytest-runner',],
|
8 |
-
install_requires=['requests','beautifulsoup4','click'
|
9 |
python_requires='>=3',
|
10 |
tests_require=['pytest>=3',],
|
11 |
include_package_data=True,
|
|
|
5 |
setup(
|
6 |
zip_safe=False,
|
7 |
setup_requires=['pytest-runner',],
|
8 |
+
install_requires=['requests','beautifulsoup4','click'],
|
9 |
python_requires='>=3',
|
10 |
tests_require=['pytest>=3',],
|
11 |
include_package_data=True,
|