-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
47 lines (43 loc) · 1.34 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
with open('README.md', 'r') as readme_file:
readme = readme_file.read()
requirements = (
'imutils',
'opencv-python',
'Pillow',
'pytesseract',
'requests',
'setuptools',
)
dev_requirements = (
'pytest',
)
setup(
name='pytextractor',
version='2.1.0',
author='danny crasto',
author_email='danwald79@gmail.com',
description='text extractor from images',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/danwald/pytextractor/',
packages=find_packages(),
install_requires=requirements,
tests_require=dev_requirements,
extras_require={"dev": dev_requirements},
use_scm_version=True,
setup_requires=['pytest-runner', 'setuptools_scm', ],
license='MIT',
include_package_data=False,
entry_points={'console_scripts': ['text_detector=pytextractor.text_detection:text_detector']},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
)