-
Notifications
You must be signed in to change notification settings - Fork 50
/
pyproject.toml
44 lines (41 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ChatDBG"
version = "0.7.1"
authors = [
{ name="Emery Berger", email="emery.berger@gmail.com" },
{ name="Stephen Freund", email="sfreund@williams.edu" },
{ name="Kyla Levin", email="khlevin@umass.edu" },
{ name="Nicolas van Kempen", email="nvankemp@gmail.com" },
]
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>=8.18.1",
"litellm==1.55.9",
"PyYAML>=6.0.1",
"ipyflow>=0.0.130",
"numpy>=1.26.3",
"httpcore>=1.0.5",
"httpx>=0.27.0",
]
description = "AI-assisted debugging. Uses AI to answer 'why'."
readme = "README.md"
requires-python = ">=3.10"
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"