regraded01 commited on
Commit
eb7d3d8
1 Parent(s): 5f61498

build: change to poetry build

Browse files
Files changed (3) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +23 -0
  3. requirements.txt +0 -2
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "pdf-to-table"
3
+ version = "0.1.0"
4
+ description = "Extract key-value pairs from PDF documents"
5
+ authors = ["Jon Fuller <jonfuller0207@gmail.com>"]
6
+ readme = "README.md"
7
+ packages = [
8
+ { include = "src" }
9
+ ]
10
+
11
+ [tool.poetry.dependencies]
12
+ python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
13
+ streamlit = "^1.35.0"
14
+ pypdf2 = "^3.0.1"
15
+ pyyaml = "^6.0.1"
16
+
17
+
18
+ [tool.poetry.group.dev.dependencies]
19
+ ipykernel = "^6.29.4"
20
+
21
+ [build-system]
22
+ requires = ["poetry-core"]
23
+ build-backend = "poetry.core.masonry.api"
requirements.txt DELETED
@@ -1,2 +0,0 @@
1
- PyPDF2
2
- streamlit