-
Notifications
You must be signed in to change notification settings - Fork 611
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
102a584
commit 5116692
Showing
25 changed files
with
150 additions
and
125 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
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
Empty file.
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
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# This file contains all python dependencies that are required by the textract | ||
# package in order for it to properly work. | ||
|
||
argcomplete~=1.10.0 | ||
beautifulsoup4~=4.8.0 | ||
chardet==3.* | ||
docx2txt~=0.8 | ||
extract-msg<=0.29.* #Last with python2 support | ||
pdfminer.six==20191110 #Last with python2 support | ||
python-pptx~=0.6.18 | ||
six~=1.12.0 | ||
SpeechRecognition~=3.8.1 | ||
xlrd~=1.2.0 | ||
argcomplete>=1.10.0 | ||
beautifulsoup4>=4.8.0 | ||
chardet>=3.* | ||
docx2txt>=0.8 | ||
extract-msg>=0.29.* | ||
pdfminer.six>=20191110 | ||
python-pptx>=0.6.18 | ||
six>=1.12.0 | ||
SpeechRecognition>=3.8.1 | ||
xlrd>=1.2.0 | ||
openpyxl>=3.0.0 |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# this only includes packages that are needed for documentation build. | ||
|
||
jinja2<3.1 | ||
sphinx==2.1.2 | ||
sphinx_rtd_theme==0.4.3 | ||
sphinx-argparse==0.2.5 | ||
pocketsphinx==0.1.15 |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 1.6.5 | ||
current_version = 1.7.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
@@ -1,16 +1,15 @@ | ||
FROM ubuntu:12.04 | ||
FROM ubuntu:20.04 | ||
MAINTAINER Shawn Milochik <shawn@milochik.com> | ||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV REFRESHED_AT 2014-08-12b | ||
ENV REFRESHED_AT 2022-08-17 | ||
RUN apt-get update | ||
RUN apt-get install python-pip -y | ||
ADD . /src | ||
WORKDIR /src | ||
RUN /bin/bash /src/provision/debian.sh | ||
RUN /bin/bash /src/provision/python.sh | ||
RUN apt-get install python3-pip -y | ||
ADD . /app | ||
WORKDIR /app | ||
RUN /bin/bash /app/provision/debian.sh | ||
RUN /bin/bash /app/provision/python.sh | ||
RUN adduser --disabled-password --gecos "" --home=/home/textract textract | ||
VOLUME ["/home/textract/src"] | ||
ENV PATH $PATH:/home/textract/src/bin | ||
ENV PYTHONPATH /home/textract/src | ||
USER textract | ||
ENTRYPOINT ["/home/textract/src/tests/run.py"] | ||
ENTRYPOINT ["/home/textract/src/tests/docker_entry.sh"] |
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
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
Oops, something went wrong.