generated from freelawproject/new-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
42 lines (38 loc) · 883 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
39
40
41
42
[tool.black]
line-length = 79
include = '''.*\.pyi?$'''
[tool.poetry]
name = "disclosure-extractor"
version = "0.1.0"
description = ""
authors = ["William Palin <bill@free.law>"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.27.1"
chardet = "^4.0.0"
numpy = "^1.22.2"
opencv-python = "^4.5.5"
prettytable = "^3.1.1"
pandas = "^1.4.1"
Pillow = "^9.3.0"
PyPDF2 = "^1.27.5"
sortedcontainers = "2.2.2"
urllib3 = "1.26.5"
python-dateutil = "2.8.1"
six = "^1.16.0"
pdfplumber = "^0.6.0"
argcomplete = "1.10.0"
certifi = "2022.12.7"
idna = "2.10"
importlib-resources = "^5.4.0"
langdetect = "^1.0.9"
olefile = "0.46"
pathlib = "^1.0.1"
pdf2image = "^1.16.0"
pycryptodome = "3.9.8"
pytesseract = "0.3.5"
pytest = "^7.0.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools>=40.8.0", "wheel"]
build-backend = "poetry.core.masonry.api"