forked from deanmalmgren/textract
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (33 loc) · 977 Bytes
/
pyproject.toml
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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.poetry]
authors = ["Dean Malmgren <[email protected]>"]
description = "Minimally maintained fork of deanmalmgren/textract to replace '*' dependencies "
license = "MIT"
name = "textract-py3"
packages = [{include = "textract"}]
readme = "README.md"
repository = "https://github.com/KyleKing/textract-py3"
version = "2.1.0"
[tool.poetry.dependencies]
python = "^3.7"
SpeechRecognition = ">=3.8.1"
argcomplete = ">=1.10.0"
beautifulsoup4 = ">=4.8.0"
chardet = ">=3"
docx2txt = ">=0.8"
extract-msg = ">=0.30.11"
"pdfminer.six" = ">=20221105"
python-pptx = ">=0.6.18"
six = ">=1.16.0"
xlrd = ">=1.2.0"
pocketsphinx = {version = ">=0.1.15", optional = true}
[tool.poetry.extras]
pocketsphinx = ["pocketsphinx"]
[tool.poetry.group.dev.dependencies]
bumpversion = ">=0.6.0"
nose = ">=1.3.7"
pytest = ">=7.2.1"
[tool.poetry.scripts]
textract = "textract.bin.textract:main"