Skip to content

Commit cfd0d86

Browse files
committed
commited
1 parent 785073a commit cfd0d86

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
setup(
44
name = 'craft_hw_ocr',
55
packages = ['craft_hw_ocr'],
6-
version = '0.1',
6+
version = '0.2',
77
license='MIT',
88
description = 'Deep learning for document processing',
99
author = 'Vishnu N',
1010
author_email = '[email protected]',
1111
url = 'https://github.com/Vishnunkumar/craft_hw_ocr/',
12-
download_url ='https://github.com/Vishnunkumar/craft_hw_ocr/archive/refs/tags/v-1.tar.gz', # I explain this later on
13-
keywords = ['NLP', 'OCR', 'Deep learning', 'Computer Vision'], # Keywords that define your package best
14-
install_requires = [ # I get to this in a second,
12+
download_url ='https://github.com/Vishnunkumar/craft_hw_ocr/archive/refs/tags/v-2.tar.gz',
13+
keywords = ['NLP', 'OCR', 'Deep learning', 'Computer Vision'],
14+
install_requires = [
1515
'transformers',
1616
'craft_text_detector',
1717
'opencv-python',
1818
'Pillow',
1919
'numpy'
2020
],
2121
classifiers=[
22-
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
23-
'Intended Audience :: Developers', # Define that your audience are developers
22+
'Development Status :: 3 - Alpha',
23+
'Intended Audience :: Developers',
2424
'Topic :: Software Development :: Build Tools',
25-
'License :: OSI Approved :: MIT License', # Again, pick a license
26-
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
25+
'License :: OSI Approved :: MIT License',
26+
'Programming Language :: Python :: 3',
2727
'Programming Language :: Python :: 3.4',
2828
'Programming Language :: Python :: 3.5',
2929
'Programming Language :: Python :: 3.6',

0 commit comments

Comments
 (0)