pyproject.toml 521 B

1234567891011121314151617181920212223242526
  1. [project]
  2. name = "trader-hyperliquid"
  3. version = "1.0.0"
  4. description = "Hyperliquid trading bot with copy trading, risk management, and performance monitoring"
  5. requires-python = ">=3.11"
  6. dependencies = [
  7. "python-telegram-bot",
  8. "python-dotenv",
  9. "numpy",
  10. "pandas",
  11. "psutil",
  12. "requests",
  13. "aiohttp",
  14. "aiofiles",
  15. "hyperliquid",
  16. ]
  17. [build-system]
  18. requires = ["hatchling"]
  19. build-backend = "hatchling.build"
  20. [tool.hatch.build.targets.wheel]
  21. packages = ["src"]
  22. [tool.uv]
  23. dev-dependencies = []