29 lines
575 B
TOML
29 lines
575 B
TOML
[project]
|
|
name = "triangular-arb"
|
|
version = "0.1.0"
|
|
description = "Triangular arbitrage bot for KuCoin"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"websockets>=12.0",
|
|
"aiohttp>=3.9",
|
|
"structlog>=24.0",
|
|
"PyYAML>=6.0",
|
|
"fastapi>=0.110",
|
|
"uvicorn>=0.27",
|
|
"pydantic>=2.0",
|
|
"pydantic-settings>=2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."] |