forked from nat/openplayground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 778 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "openplayground"
version = "0.1.12a4"
description = "test"
authors = ["Nat Friedman <[email protected]>"]
readme = "README.md"
packages = [
{ include = "server", from = "" },
]
[tool.poetry.dependencies]
python = "^3.9"
aleph_alpha_client="^2.16.1"
anthropic = "^0.2.3"
cachetools="^5.3.0"
click="^8.1.3"
Flask="^2.2.3"
Flask_Cors="^3.0.10"
huggingface_hub="^0.13.2"
openai="^0.27.2"
psutil="^5.9.4"
python-dotenv="^1.0.0"
requests="^2.28.2"
six="^1.16.0"
sseclient="^0.0.27"
torch="^2.0.0"
transformers="^4.27.1"
[tool.poetry.scripts]
openplayground = "server.app:cli"
[[tool.poetry.source]]
name = 'pypi-public'
url = "https://pypi.org/simple/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
exclude = [
".env",
]