-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (43 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
55 lines (43 loc) · 1.05 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
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "self-debug"
version = "0.1.0"
description = "SDFeedback: Code migration with LLMs using self-debugging feedback"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
# AWS
"boto3>=1.34.4",
# Git
"gitpython>=3.1.43",
# Java parsing
"javalang>=0.13.0",
# Core utilities
"numpy>=1.26.4",
"protobuf>=3.20.3",
"pydantic>=2.6.4",
"pytz>=2024.1",
"packaging>=25.0",
"requests>=2.32.3",
# Spark for batch processing
"pyspark>=3.5.1",
# HuggingFace datasets
"datasets>=2.14.0",
"huggingface-hub>=0.16.0",
# Evaluation from migration-bench
"migrationbench@git+https://github.com/amazon-science/MigrationBench.git",
]
[project.optional-dependencies]
dev = [
"parameterized>=0.8.1",
"pylint>=2.14.5",
"pytest>=7.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/self_debug"]
[tool.uv]
index-url = "https://pypi.org/simple"