nidhal baccouri commited on
Commit
52548d1
·
1 Parent(s): 1379465

updated setup

Browse files
Files changed (3) hide show
  1. deep_translator/__init__.py +1 -1
  2. setup.cfg +1 -1
  3. setup.py +21 -2
deep_translator/__init__.py CHANGED
@@ -12,7 +12,7 @@ from .detection import single_detection, batch_detection
12
 
13
  __author__ = """Nidhal Baccouri"""
14
  __email__ = '[email protected]'
15
- __version__ = '1.2.9'
16
 
17
  __all__ = [GoogleTranslator,
18
  PonsTranslator,
 
12
 
13
  __author__ = """Nidhal Baccouri"""
14
  __email__ = '[email protected]'
15
+ __version__ = '1.3.0'
16
 
17
  __all__ = [GoogleTranslator,
18
  PonsTranslator,
setup.cfg CHANGED
@@ -1,5 +1,5 @@
1
  [bumpversion]
2
- current_version = 1.2.9
3
  commit = True
4
  tag = True
5
 
 
1
  [bumpversion]
2
+ current_version = 1.3.0
3
  commit = True
4
  tag = True
5
 
setup.py CHANGED
@@ -22,12 +22,22 @@ test_requirements = ['pytest>=3', ]
22
  setup(
23
  author="Nidhal Baccouri",
24
  author_email='[email protected]',
 
 
25
  python_requires='>=3.0',
26
  classifiers=[
27
  'Development Status :: 5 - Production/Stable',
28
  'Intended Audience :: Developers',
 
 
29
  'License :: OSI Approved :: MIT License',
 
 
 
 
 
30
  'Natural Language :: English',
 
31
  'Programming Language :: Python :: 3',
32
  'Programming Language :: Python :: 3.5',
33
  'Programming Language :: Python :: 3.6',
@@ -44,13 +54,22 @@ setup(
44
  license="MIT license",
45
  long_description=readme + '\n\n' + history,
46
  include_package_data=True,
47
- keywords='deep_translator',
 
 
 
 
 
 
 
 
 
48
  name='deep_translator',
49
  packages=find_packages(include=['deep_translator']),
50
  setup_requires=setup_requirements,
51
  test_suite='tests',
52
  tests_require=test_requirements,
53
  url='https://github.com/nidhaloff/deep_translator',
54
- version='1.2.9',
55
  zip_safe=False,
56
  )
 
22
  setup(
23
  author="Nidhal Baccouri",
24
  author_email='[email protected]',
25
+ maintainer="Nidhal Baccouri",
26
+ maintainer_email='[email protected]',
27
  python_requires='>=3.0',
28
  classifiers=[
29
  'Development Status :: 5 - Production/Stable',
30
  'Intended Audience :: Developers',
31
+ 'Intended Audience :: Education',
32
+ 'Intended Audience :: Information Technology',
33
  'License :: OSI Approved :: MIT License',
34
+ 'Topic :: Education',
35
+ 'Topic :: Software Development',
36
+ 'Topic :: Communications',
37
+ 'Topic :: Text Processing',
38
+ 'Topic :: Text Processing :: Linguistic',
39
  'Natural Language :: English',
40
+ 'Operating System :: OS Independent',
41
  'Programming Language :: Python :: 3',
42
  'Programming Language :: Python :: 3.5',
43
  'Programming Language :: Python :: 3.6',
 
54
  license="MIT license",
55
  long_description=readme + '\n\n' + history,
56
  include_package_data=True,
57
+ keywords=['deep_translator',
58
+ 'deepL', 'DeepL',
59
+ 'translator',
60
+ 'translation',
61
+ 'automation',
62
+ 'web scraping',
63
+ 'google translator', 'google translation', 'google trans',
64
+ 'PONS', 'YANDEX', 'MyMemory translator', 'Linguee', 'QCRI',
65
+ 'Language', 'Language detection', 'detect language',
66
+ 'free translation', 'unlimited translation', 'translate for free'],
67
  name='deep_translator',
68
  packages=find_packages(include=['deep_translator']),
69
  setup_requires=setup_requirements,
70
  test_suite='tests',
71
  tests_require=test_requirements,
72
  url='https://github.com/nidhaloff/deep_translator',
73
+ version='1.3.0',
74
  zip_safe=False,
75
  )