-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 811 Bytes
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
[project]
name = "tradingview-mcp"
version = "3.4.1"
description = "TradingView MCP server for Claude - Multi-asset trading assistant with Pine Script v6 development tools supporting Forex, Stocks, Crypto with 25+ technical indicators"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.12.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
]
[project.scripts]
tradingview-mcp = "tradingview_mcp.server:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
tradingview_mcp = ["*.py"]
[tool.isort]
profile = "black"
line_length = 88
[tool.black]
line-length = 88
target-version = ["py310", "py311", "py312"]
[tool.uv]
dev-dependencies = []
package = true
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"