-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0123220
commit 9085841
Showing
2 changed files
with
28 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,25 +10,35 @@ def readme(): | |
return fobj.read() | ||
|
||
|
||
_description = ''' | ||
DecisionFacts Extraction Library extracts content from PDF, PPTX, Docx, png, jpg., and convert as structured JSON data. | ||
''' | ||
|
||
|
||
setup( | ||
name='df_extract', | ||
version='v0.0.1', | ||
description='Utils for decisionforce extract', | ||
description=_description, | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
author='DecisionForce', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=find_packages(exclude=('dhl',)), | ||
author='Syed', | ||
author_email='[email protected]', | ||
maintainer='DecisionFacts', | ||
maintainer_email='[email protected]', | ||
license='Apache License 2.0', | ||
url='https://github.com/decisionfacts/df-extract', | ||
download_url='https://github.com/decisionfacts/df-extract.git', | ||
keywords=['df extract content pdf pptx ppt docx doc png jpg jpeg'], | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=[ | ||
'aiofiles', | ||
'aiopath', | ||
'aiocsv', | ||
'python-pptx', | ||
'python-docx', | ||
'easyocr', | ||
'pymupdf', | ||
'Pillow==9.5.0' | ||
'aiocsv==1.2.4', | ||
'aiofiles==23.1.0', | ||
'aiopath==0.6.11', | ||
'easyocr==1.7.0', | ||
'Pillow==9.5.0', | ||
'PyMuPDF==1.22.5', | ||
'python-pptx==0.6.21', | ||
'python-docx==0.8.11' | ||
] | ||
) |