-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (55 loc) · 1.73 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
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "healing_agent"
version = "0.2.5"
authors = [
{ name = "Máté Benyovszky", email = "benyovszky.mate.work@outlook.com" },
]
description = "An AI-powered agent that helps fix and heal buggy code"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = [
"ai",
"debugging",
"error-handling",
"code-repair",
"automation",
"developer-tools",
"openai",
"exception-handling",
"code-healing",
"bug-fixing",
"agent"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Information Technology",
"Natural Language :: English",
]
dependencies = [
"openai>=1.12.0",
"astor",
"requests>=2.28.2"
]
[project.urls]
"Homepage" = "https://github.com/matebenyovszky/healing-agent"
"Bug Tracker" = "https://github.com/matebenyovszky/healing-agent/issues"
"Documentation" = "https://github.com/matebenyovszky/healing-agent#readme"
"Repository" = "https://github.com/matebenyovszky/healing-agent.git"
"Changelog" = "https://github.com/matebenyovszky/healing-agent/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["healing_agent"]