Skip to content

Commit

Permalink
PyPI setup.py installation script
Browse files Browse the repository at this point in the history
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.
32 changes: 32 additions & 0 deletions setup.py
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),
)

0 comments on commit cb963e4

Please sign in to comment.