1234567891011121314151617181920212223242526272829303132 |
- [project]
- name = "trader-hyperliquid"
- version = "1.0.0"
- description = "Hyperliquid trading bot with copy trading, risk management, and performance monitoring"
- requires-python = ">=3.11"
- dependencies = [
- "python-telegram-bot",
- "python-dotenv",
- "numpy",
- "pandas",
- "psutil",
- "requests",
- "aiohttp",
- "aiofiles",
- "hyperliquid",
- "fastapi>=0.104.0",
- "uvicorn[standard]>=0.24.0",
- "jinja2>=3.1.0",
- "python-multipart>=0.0.6",
- "websockets>=12.0",
- "sse-starlette>=1.6.0",
- ]
- [build-system]
- requires = ["hatchling"]
- build-backend = "hatchling.build"
- [tool.hatch.build.targets.wheel]
- packages = ["src"]
- [tool.uv]
- dev-dependencies = []
|