-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (120 loc) · 2.95 KB
/
Copy pathpyproject.toml
File metadata and controls
131 lines (120 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[project]
name = "polybot-trader"
version = "0.1.0"
description = "Open-source automated trading system for prediction markets - Polymarket, Kalshi, and more"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Cryptuon Research", email = "contact@cryptuon.com" }
]
maintainers = [
{ name = "Cryptuon Research", email = "contact@cryptuon.com" }
]
keywords = [
"trading-bot",
"prediction-markets",
"polymarket",
"kalshi",
"algorithmic-trading",
"automated-trading",
"market-making",
"arbitrage",
"copy-trading",
"quantitative-trading",
"defi",
"crypto-trading",
"ai-trading",
"event-contracts"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
"websockets>=12.0",
"web3>=6.0",
"eth-account>=0.11",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"fastapi>=0.109",
"uvicorn[standard]>=0.27",
"duckdb>=0.10",
"aiosqlite>=0.20",
"python-dotenv>=1.0",
"pynng>=0.8",
"msgpack>=1.0",
"click>=8.1",
"rich>=13.0",
"numpy>=1.26",
"py-clob-client>=0.34.1",
"mcp>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.1",
"ruff>=0.1",
"mypy>=1.8",
]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.24",
]
[project.urls]
Homepage = "https://polybot.cryptuon.com/"
Documentation = "https://docs.cryptuon.com/polybot/"
Repository = "https://github.com/cryptuon/polybot"
Issues = "https://github.com/cryptuon/polybot/issues"
Changelog = "https://github.com/cryptuon/polybot/blob/main/CHANGELOG.md"
[project.scripts]
polybot = "polybot.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/polybot"]
artifacts = ["src/polybot/ui/dist/**"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/frontend",
"/tests",
"/documentation",
]
exclude = [
"/.venv",
"/data",
"*.pyc",
"__pycache__",
]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]