[project] name = "alpaclaudia" version = "0.1.0" description = "Alpaca Paper-Trading Bot — Wheel strategy + equity trailing stops." requires-python = ">=3.11" dependencies = [ "alpaca-py>=0.43.0", "python-dotenv>=1.0.1", "httpx>=0.27.0", "pydantic>=2.7.0", "typer>=0.12.0", "rich>=13.7.0", "pandas>=2.2.0", "pytz>=2024.1", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "ruff>=0.5", ] [project.scripts] alpaclaudia = "alpaclaudia.__main__:app" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["alpaclaudia"] [tool.ruff] line-length = 100 target-version = "py311"