-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.11 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ChatDBG"
version = "1.0.1"
authors = [
{ name="Emery Berger", email="[email protected]" },
{ name="Stephen Freund", email="[email protected]" },
{ name="Kyla Levin", email="[email protected]" },
{ name="Nicolas van Kempen", email="[email protected]" },
]
dependencies = [
"llm-utils>=0.2.8",
"openai>=1.29.0",
"rich>=13.7.0",
"ansicolors>=1.1.8",
"traitlets>=5.14.1",
"ipdb>=0.13.13",
"ipython>=9.0.0",
"pygments>=2.0.0",
"litellm==1.55.9",
"PyYAML>=6.0.1",
"ipyflow>=0.0.130",
"numpy>=1.26.3",
]
description = "AI-assisted debugging. Uses AI to answer 'why'."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.scripts]
chatdbg = "chatdbg.__main__:main"
print_chatdbg_log = "chatdbg.util.plog:main"
[project.urls]
"Homepage" = "https://github.com/plasma-umass/ChatDBG"
"Bug Tracker" = "https://github.com/plasma-umass/ChatDBG/issues"