Add setup.py.

This commit is contained in:
Andrey Golovizin 2014-08-08 23:09:40 +02:00
parent ee22008820
commit 79769a7770
2 changed files with 15 additions and 0 deletions

12
setup.py Executable file
View file

@ -0,0 +1,12 @@
#!/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',
packages=find_packages(),
)