Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extract-msg~=0.28.7 #490

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# textract

Extract text from any document. No muss. No fuss.

[Full documentation](http://textract.readthedocs.org).

[![Build
Status](https://travis-ci.org/deanmalmgren/textract.svg?branch=master)](https://travis-ci.org/deanmalmgren/textract)
[![Version](https://img.shields.io/pypi/v/textract.svg)](https://warehouse.python.org/project/textract/)
[![Downloads](https://img.shields.io/pypi/dm/textract.svg)](https://warehouse.python.org/project/textract/)
[![Test
Coverage](https://coveralls.io/repos/github/deanmalmgren/textract/badge.svg?branch=master)](https://coveralls.io/github/deanmalmgren/textract?branch=master)
[![Documentation
Status](https://readthedocs.org/projects/textract/badge/?version=latest)](https://readthedocs.org/projects/textract/?badge=latest)
[![Updates](https://pyup.io/repos/github/deanmalmgren/textract/shield.svg)](https://pyup.io/repos/github/deanmalmgren/textract/)
[![Stars](https://img.shields.io/github/stars/deanmalmgren/textract.svg)](https://github.com/deanmalmgren/textract/stargazers)
[![Forks](https://img.shields.io/github/forks/deanmalmgren/textract.svg)](https://github.com/deanmalmgren/textract/network)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion requirements/python → backup/requirements/python
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ argcomplete~=1.10.0
beautifulsoup4~=4.8.0
chardet==3.*
docx2txt~=0.8
extract-msg<=0.29.* #Last with python2 support
extract-msg~=0.28.7 #Last with python2 support
pdfminer.six==20191110 #Last with python2 support
python-pptx~=0.6.18
six~=1.12.0
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.cfg → backup/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.5
current_version = 1.6.6
commit = True
tag = True

Expand Down
6 changes: 3 additions & 3 deletions setup.py → backup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open("README.rst") as stream:
long_description = stream.read()

github_url = 'https://github.com/deanmalmgren/textract'
github_url = 'https://github.com/mtasic85/textract'


def parse_requirements(requirements_filename):
Expand Down Expand Up @@ -41,8 +41,8 @@ def parse_requirements(requirements_filename):


setup(
name=textract.__name__,
version="1.6.5",
name="textract",
version="1.6.6",
description="extract text from any document. no muss. no fuss.",
long_description=long_description,
url=github_url,
Expand Down
872 changes: 872 additions & 0 deletions poetry.lock

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[tool.poetry]
name = "textract"
version = "1.6.6"
description = "Extract text from any document. No muss. No fuss."
authors = ["Dean Malmgren <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "textract"}]

[tool.poetry.dependencies]
python = "^3.10"
argcomplete = "^3.1.4"
beautifulsoup4 = "^4.12.2"
chardet = "^5.2.0"
docx2txt = "^0.8"
extract-msg = "^0.46.0"
pdfminer = "^20191125"
python-pptx = "^0.6.23"
speechrecognition = "^3.10.0"
xlrd = "^2.0.1"
six = "^1.16.0"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
4 changes: 1 addition & 3 deletions textract/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from .parsers import process

VERSION = "1.6.5"
from .parsers import process