-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (26 loc) · 968 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 = 'mementor',
packages = ['mementor'], # this must be the same as the name above
version = '1.0.4',
description = 'A library to fetch images from directory to fix orientation and pull OCR from the images along with editing the text inside images, primarily focusing on memes',
long_description = readme(),
author = 'Sunim Acharya',
author_email = 'sunim.54@gmail.com',
url = 'https://github.com/aryaminus/memento', # use the URL to the github repo
keywords = ['ocr', 'image', 'opencv', 'tesseract', 'orientation'], # arbitrary keywords
classifiers = [],
install_requires=[
'pillow', 'pyocr', 'numpy', 'tesseract'
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'memento = mementor.memento:start'
]},
)