|
3 | 3 | setup(
|
4 | 4 | name = 'craft_hw_ocr',
|
5 | 5 | packages = ['craft_hw_ocr'],
|
6 |
| - version = '0.1', |
| 6 | + version = '0.2', |
7 | 7 | license='MIT',
|
8 | 8 | description = 'Deep learning for document processing',
|
9 | 9 | author = 'Vishnu N',
|
10 | 10 | author_email = '[email protected]',
|
11 | 11 | 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 = [ |
15 | 15 | 'transformers',
|
16 | 16 | 'craft_text_detector',
|
17 | 17 | 'opencv-python',
|
18 | 18 | 'Pillow',
|
19 | 19 | 'numpy'
|
20 | 20 | ],
|
21 | 21 | 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', |
24 | 24 | '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', |
27 | 27 | 'Programming Language :: Python :: 3.4',
|
28 | 28 | 'Programming Language :: Python :: 3.5',
|
29 | 29 | 'Programming Language :: Python :: 3.6',
|
|
0 commit comments