jeongsk commited on
Commit
b8da58e
·
1 Parent(s): 782ba28

chore: Add pyproject.toml file with project dependencies

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +18 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "careeradvisepro"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["jeongsk <[email protected]>"]
6
+ readme = "README.md"
7
+ license = "lgpl-3.0"
8
+
9
+
10
+ [tool.poetry.dependencies]
11
+ python = "3.11.9"
12
+ streamlit = "^1.36.0"
13
+ pdfplumber = "^0.11.2"
14
+
15
+
16
+ [build-system]
17
+ requires = ["poetry-core"]
18
+ build-backend = "poetry.core.masonry.api"