rianders commited on
Commit
fc58a90
·
1 Parent(s): 3880334

added poetry

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +19 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "test"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["ricklon <rianders@docs.rutgers.edu>"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
10
+ streamlit = "^1.32.2"
11
+ pandas = "^2.2.1"
12
+ numpy = "^1.26.4"
13
+ langchain = "^0.1.13"
14
+ openai = "^1.14.3"
15
+
16
+
17
+ [build-system]
18
+ requires = ["poetry-core"]
19
+ build-backend = "poetry.core.masonry.api"