Add setup.py.
This commit is contained in:
parent
ee22008820
commit
79769a7770
2 changed files with 15 additions and 0 deletions
|
|
@ -3,4 +3,7 @@ syntax: glob
|
||||||
*~
|
*~
|
||||||
*.pyc
|
*.pyc
|
||||||
*.swp
|
*.swp
|
||||||
|
*.egg-info
|
||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
|
build
|
||||||
|
dist
|
||||||
|
|
|
||||||
12
setup.py
Executable file
12
setup.py
Executable 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(),
|
||||||
|
)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue