-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 935 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 935 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
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "CryptoPortfolioMCPServer"
version = "1.0.0"
description = "Read-only cryptocurrency portfolio management MCP server for Binance, Coinbase, and Kraken"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "lev-corrupted", email = "dev@example.com"}
]
dependencies = [
"ccxt>=4.2.0",
"python-dotenv>=1.0.0",
"mcp>=0.9.0",
"requests>=2.31.0",
"aiohttp>=3.9.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.0.0",
"mypy>=1.5.0",
"ruff>=0.1.0",
]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true