-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.06 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
[project]
name = "polymarket-news-tracker"
version = "0.1.0"
description = "Real-time market tracking dashboard for Polymarket with TradingView charts and live news feeds"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"httpx>=0.28.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"sqlalchemy>=2.0.0",
"aiosqlite>=0.21.0",
"greenlet>=3.0.0",
"apscheduler>=3.11.0",
"python-dotenv>=1.0.0",
"py-clob-client>=0.34.5",
"langchain>=1.2.7",
"langchain-google-genai>=4.2.0",
"langchain-community>=0.4.1",
"langgraph>=1.0.7",
"tavily-python>=0.7.19",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.25.0",
"ruff>=0.9.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/backend"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"