aslessor commited on
Commit
2c3b31f
·
1 Parent(s): a81d16a

explicitly add pydantic

Browse files
Files changed (3) hide show
  1. .gitignore +1 -0
  2. pyproject.toml +1 -1
  3. 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 = ['py35']
 
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