-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.02 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "repairloop"
version = "0.2.0"
description = "Local-first automatic code repair tool for Python runtime errors"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [{ name = "RepairLoop Contributors" }]
keywords = ["code-repair", "debugging", "automation", "python", "local-first"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Quality Assurance",
]
[project.optional-dependencies]
dev = ["pytest>=8"]
[project.scripts]
repair-loop = "repair_loop.cli:main"
[tool.setuptools.packages.find]
include = ["repair_loop*"]
exclude = ["demo*", "tests*"]