Skip to content

Commit

Permalink
updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SyedHabibM committed Oct 10, 2023
1 parent 0123220 commit 9085841
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 14 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# DF Extract Lib

[![Upload Python Package](https://github.com/decisionfacts/df-extract/actions/workflows/python-publish.yml/badge.svg)](https://github.com/decisionfacts/df-extract/actions/workflows/python-publish.yml)
[![PyPI version](https://badge.fury.io/py/df-extract.svg)](https://badge.fury.io/py/df-extract) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

## Requirements

Expand All @@ -10,6 +10,10 @@ Python 3.10+
## Installation

```shell
# Using pip
$ python -m pip install df-extract

# Manual install
$ python -m pip install .
```

Expand Down
36 changes: 23 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
)

0 comments on commit 9085841

Please sign in to comment.