28 lines
888 B
Python
Executable file
28 lines
888 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='pixelocr',
|
|
version='0.1',
|
|
description='OCR toolkit for computer generated pixel-perfect images',
|
|
author='Andrey Golovizin',
|
|
author_email='ag@sologoc.com',
|
|
license='GPLv3+',
|
|
classifiers=[
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
'Development Status :: 3 - Alpha',
|
|
'Programming Language :: Python :: 3',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: End Users/Desktop',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['pixelocr = pixelocr.gui:main'],
|
|
'pixelocr.formatting': [
|
|
'text = pixelocr.formatting:TextFormat',
|
|
'html = pixelocr.formatting:HTMLFormat',
|
|
],
|
|
},
|
|
packages=find_packages(),
|
|
)
|