-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (35 loc) · 971 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
[tool.poetry]
name = "prr"
version = "0.4.0"
description = "prr - command-line LLM prompt runner"
authors = [ "Zbigniew Sobiecki <[email protected]>" , "Mateusz Kozak <[email protected]>" ]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
openai = "^0.27.6"
python-dotenv = "^1.0.0"
anthropic = "^0.2.7"
rich = "^13.3.5"
Jinja2 = "^3.1.2"
pyyaml = "^6.0"
google-cloud-aiplatform = "^1.25.0"
huggingface-hub = "^0.14.1"
text-generation = "^0.5.2"
uvicorn = "^0.22.0"
elevenlabs = "^0.2.21"
fastapi = "^0.100.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.12.0"
black = "^23.3.0"
isort = "^5.12.0"
[tool.poetry.scripts]
prr = { callable = "prr:__main__.main" }
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility/
profile = "black"
[project.urls]
Homepage = "https://github.com/Forward-Operators/prr"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"