-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpyproject.toml
30 lines (25 loc) · 990 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
[tool.poetry]
name = "llmstudio-monorepo"
version = "1.0.0"
description = "Prompt Perfection at Your Fingertips"
authors = ["Cláudio Lemos <claudio@tensorops.ai>"]
license = "MIT"
homepage = "https://llmstudio.ai/"
repository = "https://github.com/tensoropsai/llmstudio"
documentation = "https://docs.llmstudio.ai"
readme = "README.md"
keywords = ["ml", "ai", "llm", "llmops", "openai", "langchain", "chatgpt", "llmstudio", "tensorops"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tensoropsai/llmstudio/issues"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
llmstudio = { path = "libs/llmstudio/", develop = true }
llmstudio-core = { path = "libs/core/", develop = true }
llmstudio-tracker = { path = "libs/tracker/", develop = true }
llmstudio-proxy = { path = "libs/proxy/", develop = true }
[tool.poetry.scripts]
llmstudio = "llmstudio.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"