forked from madmaze/pytesseract
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (18 loc) · 746 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
#originally forked from https://github.com/jflesch/python-tesseract.git
from distutils.core import setup
setup(name='python-tesseract',
version='1.0',
description='Python Tesseract Command Line Invoker',
author='Christopher Piekarski',
author_email='[email protected]',
keywords=['tesseract','ocr'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
],
url='https://github.com/chris-piekarski/python-tesseract',
py_modules=['tesseract'],
)