-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (30 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
38 lines (30 loc) · 885 Bytes
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
[project]
name = "java-migration-agent"
version = "0.1.0"
description = "Java Migration Agent with LLM-based migration capabilities"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Core dependencies
"toml>=0.10.2",
"packaging>=21.0",
"boto3>=1.40.41",
# Strands framework for LLM agents
"strands-agents[openai]>=1.18.0",
"strands-agents-tools>=0.2.16",
# HuggingFace datasets
"datasets>=2.14.0",
"huggingface-hub>=0.16.0",
# Evaluation from migration-bench
"migrationbench@git+https://github.com/amazon-science/MigrationBench.git",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/java_migration_agent"]
[tool.uv]
# UV-specific configuration
index-url = "https://pypi.org/simple"