explicitly add pydantic
Browse files- .gitignore +1 -0
- pyproject.toml +1 -1
- requirements.txt +1 -0
.gitignore
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
__pycache__
|
2 |
*.ipynb
|
3 |
*.pdf
|
|
|
4 |
|
5 |
test_handler_local.py
|
6 |
test_handler.py
|
|
|
1 |
__pycache__
|
2 |
*.ipynb
|
3 |
*.pdf
|
4 |
+
*.log
|
5 |
|
6 |
test_handler_local.py
|
7 |
test_handler.py
|
pyproject.toml
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
[tool.black]
|
2 |
line-length = 119
|
3 |
-
target-version = ['
|
|
|
1 |
[tool.black]
|
2 |
line-length = 119
|
3 |
+
target-version = ['py310']
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
docquery==0.0.7
|
2 |
pytesseract
|
|
|
3 |
|
|
|
1 |
docquery==0.0.7
|
2 |
pytesseract
|
3 |
+
pydantic==1.8.2
|
4 |
|