Skip to content

Commit

Permalink
Some pyproject.toml changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicovank committed Jan 8, 2024
1 parent 53e72c3 commit 75acc89
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "ChatDBG"
version = "0.2.2"
authors = [
{ name="Emery Berger", email="[email protected]" },
]
dependencies = ["llm_utils==0.2.2", "openai>=0.27.0"]
description = "ChatDBG."
dependencies = ["llm_utils==0.2.2", "openai>=1.6.1"]
description = "AI-assisted debugging. Uses AI to answer 'why'."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]

Expand All @@ -27,4 +23,4 @@ chatdbg = "chatdbg.__main__:main"

[project.urls]
"Homepage" = "https://github.com/plasma-umass/ChatDBG"
"Bug Tracker" = "https://github.com/plasma-umass/ChatDBG"
"Bug Tracker" = "https://github.com/plasma-umass/ChatDBG/issues"

0 comments on commit 75acc89

Please sign in to comment.