admin commited on
Commit
8f2e15b
·
1 Parent(s): c162999
Files changed (3) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +18 -0
  3. requirements.txt +4 -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 = "chart-pg"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["admin"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.10"
10
+ gradio = "4.29.0"
11
+ matplotlib = "3.6.3"
12
+ numpy = "1.24.3"
13
+ scipy = "1.13.0"
14
+
15
+
16
+ [build-system]
17
+ requires = ["poetry-core"]
18
+ build-backend = "poetry.core.masonry.api"
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ gradio==4.29.0
2
+ matplotlib==3.6.3
3
+ numpy==1.24.3
4
+ scipy==1.13.0