[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "stack-2.9" version = "0.1.0" description = "AI coding assistant with pattern memory and tool calling" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.10" dependencies = [ "transformers>=4.40.0", "peft>=0.10.0", "accelerate>=0.34.0", "datasets>=3.0.0", "torch>=2.2.0", "pyyaml>=6.0", "fastapi>=0.115.0", "uvicorn[standard]>=0.30.0", "pydantic>=2.0.0", ] [project.optional-dependencies] dev = [ "ruff>=0.8.0", "black>=24.0.0", "mypy>=1.0.0", "pytest>=8.0.0", ] [tool.ruff] line-length = 100 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP", "B"] ignore = ["E501"] [tool.black] line-length = 100 target-version = ["py310"] [tool.mypy] python_version = "3.10" warn_return_any = true warn_unused_ignores = true [tool.pytest.ini_options] testpaths = ["tests"]