|
13 | 13 | version = line.strip().split('=')[1].strip(' \'"')
|
14 | 14 | break
|
15 | 15 | else:
|
16 |
| - version = '0.0.1' |
| 16 | + version = '0.3.6' |
17 | 17 |
|
18 | 18 | with open('README.md', 'r', encoding='utf-8') as f:
|
19 | 19 | readme = f.read()
|
|
23 | 23 | kwargs = {
|
24 | 24 | 'name': 'ocrpy',
|
25 | 25 | 'version': version,
|
26 |
| - 'description': 'unified interface to google vision, aws textract, azure, tesseract OCR, EasyOCR tools.', |
| 26 | + 'description': 'Unified interface to google vision, aws textract, azure and tesseract OCR tools.', |
27 | 27 | 'long_description': readme,
|
28 | 28 | 'author': 'Maxentlabs',
|
29 | 29 | 'author_email': 'maxentlabsai@gmail.com',
|
|
33 | 33 | 'license': 'MIT/Apache-2.0',
|
34 | 34 | 'classifiers': [
|
35 | 35 | 'Development Status :: 4 - Beta',
|
36 |
| - 'Intended Audience :: Developers', |
| 36 | + 'Development Status :: 5 - Production/Stable', |
37 | 37 | 'License :: OSI Approved :: MIT License',
|
38 | 38 | 'License :: OSI Approved :: Apache Software License',
|
39 | 39 | 'Natural Language :: English',
|
40 | 40 | 'Operating System :: OS Independent',
|
41 | 41 | 'Programming Language :: Python :: 3.7',
|
42 | 42 | 'Programming Language :: Python :: 3.8',
|
| 43 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 44 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 45 | + 'Topic :: Text Processing :: Linguistic', |
| 46 | + 'Topic :: Scientific/Engineering :: Image Recognition', |
| 47 | + 'Topic :: Scientific/Engineering :: Information Analysis', |
| 48 | + 'Intended Audience :: Developers', |
| 49 | + 'Intended Audience :: Science/Research', |
| 50 | + 'Intended Audience :: Education', |
| 51 | + 'Intended Audience :: Healthcare Industry', |
| 52 | + 'Intended Audience :: Legal Industry', |
| 53 | + 'Intended Audience :: Telecommunications Industry', |
| 54 | + 'Intended Audience :: Other Audience', |
| 55 | + 'Intended Audience :: Information Technology', |
| 56 | + 'Intended Audience :: Financial and Insurance Industry', |
| 57 | + |
43 | 58 | ],
|
44 | 59 | 'install_requires': REQUIRES,
|
45 | 60 | 'tests_require': ['coverage', 'pytest'],
|
46 | 61 | 'packages': find_packages(exclude=('tests', 'tests.*')),
|
47 |
| - |
| 62 | + 'project_urls': { |
| 63 | + 'Documentation': 'maxentlabs.com/ocrpy/', |
| 64 | + 'Source': 'https://github.com/maxent-ai/ocrpy'} |
48 | 65 | }
|
49 | 66 |
|
50 | 67 | #################### BEGIN USER OVERRIDES ####################
|
|
0 commit comments