42 lines
999 B
TOML
42 lines
999 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "exchange-data-manager"
|
|
version = "0.1.0"
|
|
description = "Efficiently retrieve and manage financial candlestick data with caching, REST API, and WebSocket support."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.109.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"websockets>=12.0",
|
|
"ccxt>=4.2.0",
|
|
"pydantic>=2.5.0",
|
|
"pyyaml>=6.0",
|
|
"aiosqlite>=0.19.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"pytest-cov>=4.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"pytest-benchmark>=4.0",
|
|
"httpx>=0.26.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
exchange-data-manager = "exchange_data_manager.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|
|
markers = [
|
|
"real_exchange: tests that require real exchange connectivity (deselect with '-m \"not real_exchange\"')",
|
|
]
|