-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.18 KB
/
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
46
47
48
49
50
[tool.poetry]
name = "llm-code"
version = "0.8.0"
description = "An OpenAI LLM based CLI coding assistant."
authors = ["Rushabh Doshi <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "llm_code" }]
homepage = "https://github.com/radoshi/llm-code"
repository = "https://github.com/radoshi/llm-code"
keywords = ["openai", "llm", "cli", "coding", "assistant"]
classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Development Status :: 3 - Alpha",
"Environment :: Console",
]
include = ["prompts/**/*.toml"]
[tool.poetry.scripts]
llm-code = "llm_code.llm_code:main"
[tool.poetry.dependencies]
python = "^3.11"
pydantic = { extras = ["dotenv"], version = "^1.10.7" }
openai = "^1.3"
click = "^8.1.3"
rich = "^13.3.5"
tomli = "^2.0.1"
sqlalchemy = "^2.0.15"
pyperclip = "^1.8.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0"
pytest-cov = "^4.0.0"
mypy = "^1.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-watch = "^4.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
[tool.isort]
profile = "black"