Files
TraderAI/pyproject.toml
HRiggs cf0693f319
Build Release EXE / build-windows-exe (release) Successful in 51s
versioning: 0.0.9
2026-06-09 11:24:33 -04:00

47 lines
725 B
TOML

[project]
name = "traderai"
version = "0.0.9"
description = "Local Ollama, OpenAI, or Codex assistant for UEX marketplace workflows."
requires-python = ">=3.11"
dependencies = [
"apscheduler>=3.10.4",
"fastapi>=0.115.0",
"httpx>=0.27.0",
"pywebview>=5.4",
"pydantic>=2.8.0",
"pydantic-settings>=2.4.0",
"python-dotenv>=1.0.1",
"tzlocal>=5.2",
"uvicorn[standard]>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pyinstaller>=6.11.0",
"pytest>=8.3.0",
"pytest-asyncio>=0.23.8",
"respx>=0.21.1",
]
[project.scripts]
traderai-desktop = "traderai.desktop:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.setuptools.packages.find]
include = ["traderai*"]