-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.19 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
51
52
53
54
55
[project]
name = "bb7"
version = "0.5.5"
description = "A TDD coding bot"
authors = [{ name = "Drunkwcodes", email = "drunkwcodes@gmail.com" }]
dependencies = [
"rich>=13.7.1",
"ollama>=0.3.1",
"click>=8.1.7",
"pytest>=8.3.2",
"gTTS>=2.5.3",
"pygame>=2.6.0",
"prompt-toolkit>=3.0.47",
"platformdirs>=4.3.1",
"pytest-cov>=5.0.0",
"tomlkit>=0.13.2",
"llama-index>=0.11.14",
"llama-index-embeddings-huggingface>=0.3.1",
"llama-index-readers-file>=0.2.2",
"chromadb>=0.5.11",
"llama-index-vector-stores-chroma>=0.2.0",
"llama-index-llms-ollama>=0.3.3",
"peewee>=3.17.6",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
[project.urls]
Homepage = "https://github.com/drunkwcodes/bb7"
Issues = "https://github.com/drunkwcodes/bb7/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"black>=24.8.0",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.31",
"towncrier>=24.7.1",
"ruff>=0.5.7",
"coverage>=7.6.1",
"isort>=5.13.2",
"ipython>=8.26.0",
"ipykernel>=6.29.5",
]
[project.scripts]
bb7 = "bb7.cli:main"