初步完成项目,可以监控给出入场信号

This commit is contained in:
2026-07-14 00:37:22 +08:00
commit a1963e58ed
31 changed files with 3566 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "polymarket-copy-trader"
version = "0.1.0"
description = "Quantitative copy-trading bot for Polymarket — follows top profitable wallets using Bayesian + Kelly sizing"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"httpx>=0.27.0",
"websockets>=13.0",
"requests>=2.28.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"typer>=0.9.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"numpy>=1.24.0",
"python-telegram-bot>=21.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.1.0",
]
[project.scripts]
copy-trader = "src.main:main"
[tool.ruff]
line-length = 100
target-version = "py310"