5m4ck3r commited on
Commit
24f5d32
1 Parent(s): 0daa603

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +19 -0
pyproject.toml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [tool.poetry]
6
+ name = "chat_cpu"
7
+ version = "0.1.0"
8
+ description = "ChatCPU model"
9
+ authors = ["Pryanshu Sharma pryanshusharma.logicspine@gmail.com"]
10
+
11
+ [tool.poetry.dependencies]
12
+ python = "^3.8"
13
+ torch = "^1.10.0"
14
+ transformers = "^4.10.3"
15
+ gradio = "^2.2.4"
16
+
17
+ [build-system]
18
+ requires = ["poetry-core>=1.0.0"]
19
+ build-backend = "poetry.core.masonry.api"