-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
28 lines (26 loc) · 896 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#from distutils.core import setup
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'saram',
packages = ['saram'], # this must be the same as the name above
version = '1.0.2',
description = 'A library to fetch images from a directory and get OCR and store in txt with orientation rotation check and pdf support.',
long_description = readme(),
author = 'Sunim Acharya',
author_email = 'sunim.54@gmail.com',
url = 'https://github.com/aryaminus/saram', # use the URL to the github repo
keywords = ['ocr', 'image', 'pdf'], # arbitrary keywords
classifiers = [],
install_requires=[
'setuptools', 'pillow', 'pyocr', 'wand' ,'tesseract'
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'saram = saram.saram:start'
]},
)