Spaces:
Sleeping
Sleeping
Create pyproject.toml
Browse files- 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"
|