-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 744 Bytes
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
[tool.poetry]
name = "python-pilot"
version = "0.0.11"
description = "A python terminal with coding copilot inside"
authors = ["Roy Pasternak <roy@larium.ai>"]
homepage = "https://github.com/roy-pstr/python-pilot"
readme = "README.md"
packages = [
{ include = "pypilot" },
]
[tool.poetry.scripts]
pypilot = "pypilot.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
openai = "^1.13.3"
python-dotenv = "^1.0.1"
tiktoken = "^0.6.0"
llama-cpp-python = {extras = ["server"], version = "^0.2.56", optional=true}
numpy = "^1.26.4"
huggingface-hub = {version = "^0.21.4", optional=true}
[tool.poetry.extras]
llama = ["llama-cpp-python", "huggingface-hub"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"