command/bin/bash -lc "sed -n '1,220p' pyproject.toml"
exit code 0
Output: [project] name = "financial-advisor-agent" version = "0.1.0" description = "Financial advisor Streamlit app powered by a LangGraph ReAct agent" readme = "Readme.md" requires-python = ">=3.10" dependencies = [ "streamlit", "requests", "pandas", "matplotlib", "yfinance", "gnews", "python-dotenv", "pymongo", "langgraph", "langchain-core", "langchain-openai", ] [project.scripts] start = "app.__main__:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["app"] [tool.hatch.build.targets.sdist] include = [ "app", ".env.example", "Readme.md", "pyproject.toml", ] [tool.uv] package = true [dependency-groups] dev = [ "ruff", ] [tool.ruff] line-length = 100 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "I"] ignore = ["E501"]