-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
45 lines (38 loc) · 928 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
43
44
45
[tool.poetry]
name = "open-creator"
packages = [
{include = "creator"},
]
version = "0.1.2"
description = "Build your costomized skill library"
authors = ["JunminGONG <[email protected]>"]
readme = "README.md"
include = ["creator/config.yaml"]
[tool.poetry.dependencies]
python = "^3.10"
rich = "^13.5.2"
langchain = ">=0.0.317"
huggingface_hub = "^0.17.2"
loguru = "^0.7.2"
pydantic = "^2.0.3"
python-dotenv = "^1.0.0"
openai = "^0.28.1"
tiktoken = "^0.5.1"
prompt_toolkit = "^3.0.39"
inquirer = "^3.1.3"
pyyaml = "^6.0.1"
appdirs = "^1.4.4"
urllib3 = "^2.0.6"
fastapi = "^0.103.1"
uvicorn = "^0.23.2"
streamlit = "^1.27.2"
[tool.poetry.dependencies.pyreadline3]
version = "^3.4.1"
markers = "sys_platform == 'win32'"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
creator = "creator:cmd_client"