2026-03-20 14:38:07 +09:00
|
|
|
[project]
|
2026-03-20 14:48:59 +09:00
|
|
|
name = "galaxis-agent"
|
2026-03-20 14:38:07 +09:00
|
|
|
version = "0.1.0"
|
2026-03-20 14:48:59 +09:00
|
|
|
description = "Autonomous SWE agent for galaxis-po development"
|
2026-03-20 14:38:07 +09:00
|
|
|
readme = "README.md"
|
2026-03-20 14:48:59 +09:00
|
|
|
requires-python = ">=3.12"
|
2026-03-20 14:38:07 +09:00
|
|
|
license = { text = "MIT" }
|
|
|
|
|
dependencies = [
|
|
|
|
|
"deepagents>=0.4.3",
|
|
|
|
|
"fastapi>=0.104.0",
|
|
|
|
|
"uvicorn>=0.24.0",
|
|
|
|
|
"httpx>=0.25.0",
|
|
|
|
|
"cryptography>=41.0.0",
|
|
|
|
|
"langgraph-sdk>=0.1.0",
|
|
|
|
|
"langchain>=1.2.9",
|
|
|
|
|
"langgraph>=1.0.8",
|
|
|
|
|
"langgraph-cli[inmem]>=0.4.12",
|
2026-03-20 14:48:59 +09:00
|
|
|
"langchain-anthropic>1.1.0",
|
|
|
|
|
"markdownify>=1.2.2",
|
|
|
|
|
"docker>=7.0.0",
|
|
|
|
|
"pydantic-settings>=2.0.0",
|
|
|
|
|
"slowapi>=0.1.9",
|
|
|
|
|
"discord.py>=2.3.0",
|
2026-03-20 14:38:07 +09:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=7.0.0",
|
|
|
|
|
"pytest-asyncio>=0.21.0",
|
|
|
|
|
"ruff>=0.1.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["agent"]
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
2026-03-20 14:48:59 +09:00
|
|
|
target-version = "py312"
|
2026-03-20 14:38:07 +09:00
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
2026-03-20 14:48:59 +09:00
|
|
|
select = ["E", "W", "F", "I", "B", "C4", "UP"]
|
|
|
|
|
ignore = ["E501"]
|
2026-03-20 14:38:07 +09:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
testpaths = ["tests"]
|