-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Balthazar Rouberol <[email protected]>
- Loading branch information
Balthazar Rouberol
committed
Dec 25, 2012
1 parent
2630ce9
commit cb963e4
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import tesseract_trainer | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="TesseractTrainer", | ||
version=tesseract_trainer.__version__, | ||
license=open('LICENSE.txt').read(), | ||
description='A small framework taking over the manual tesseract training process described in the Tesseract Wiki', | ||
author="Balthazar Rouberol", | ||
author_email='[email protected]', | ||
url='https://github.com/BaltoRouberol/TesseractTrainer', | ||
packages=['tesseract_trainer'], | ||
requires=['PIL (>=1.1.7)'], | ||
keywords=['tesseract', 'OCR', 'optical character recogniton', 'training'], | ||
scripts=['tesseract_trainer/tesstrain'], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: Unix', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Scientific/Engineering :: Image Recognition', | ||
], | ||
long_description=open('README.txt').read(), # Long description: content of README.txt (DRY), | ||
) |