16 lines
422 B
Python
Executable file
16 lines
422 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+)',
|
|
],
|
|
packages=find_packages(),
|
|
)
|