Skip to content

Commit 8dd60ed

Browse files
committed
update classifiers
1 parent b9b532c commit 8dd60ed

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ classifiers = [
2222
'Operating System :: OS Independent',
2323
'Programming Language :: Python :: 3.7',
2424
'Programming Language :: Python :: 3.8',
25+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
26+
'Topic :: Software Development :: Libraries :: Python Modules',
27+
'Topic :: Text Processing :: Linguistic',
28+
'Topic :: Scientific/Engineering :: Image Recognition',
29+
'Topic :: Scientific/Engineering :: Information Analysis',
30+
'Intended Audience :: Developers',
31+
'Intended Audience :: Science/Research',
32+
'Intended Audience :: Education',
33+
'Intended Audience :: Healthcare Industry',
34+
'Intended Audience :: Legal Industry',
35+
'Intended Audience :: Telecommunications Industry',
36+
'Intended Audience :: Other Audience',
37+
'Intended Audience :: Information Technology',
38+
'Intended Audience :: Financial and Insurance Industry',
2539
]
2640

2741
dependencies = [

setup.py

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
version = line.strip().split('=')[1].strip(' \'"')
1414
break
1515
else:
16-
version = '0.0.1'
16+
version = '0.3.6'
1717

1818
with open('README.md', 'r', encoding='utf-8') as f:
1919
readme = f.read()
@@ -23,7 +23,7 @@
2323
kwargs = {
2424
'name': 'ocrpy',
2525
'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.',
2727
'long_description': readme,
2828
'author': 'Maxentlabs',
2929
'author_email': 'maxentlabsai@gmail.com',
@@ -33,18 +33,35 @@
3333
'license': 'MIT/Apache-2.0',
3434
'classifiers': [
3535
'Development Status :: 4 - Beta',
36-
'Intended Audience :: Developers',
36+
'Development Status :: 5 - Production/Stable',
3737
'License :: OSI Approved :: MIT License',
3838
'License :: OSI Approved :: Apache Software License',
3939
'Natural Language :: English',
4040
'Operating System :: OS Independent',
4141
'Programming Language :: Python :: 3.7',
4242
'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+
4358
],
4459
'install_requires': REQUIRES,
4560
'tests_require': ['coverage', 'pytest'],
4661
'packages': find_packages(exclude=('tests', 'tests.*')),
47-
62+
'project_urls': {
63+
'Documentation': 'maxentlabs.com/ocrpy/',
64+
'Source': 'https://github.com/maxent-ai/ocrpy'}
4865
}
4966

5067
#################### BEGIN USER OVERRIDES ####################

0 commit comments

Comments
 (0)