-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.75 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
[project]
name = "hummingbot_mcp"
version = "1.0.4"
description = "MCP server for Hummingbot API integration - manage crypto trading across multiple exchanges"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"hummingbot-api-client==1.2.8",
"mcp[cli]>=1.6.0",
"pydantic>=2.11.2",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
"aiohttp>=3.9.0",
]
[project.urls]
Homepage = "https://github.com/hummingbot/mcp"
Repository = "https://github.com/hummingbot/mcp"
Issues = "https://github.com/hummingbot/mcp/issues"
[project.scripts]
hummingbot-mcp = "hummingbot_mcp:main"
mcp-hummingbot = "hummingbot_mcp:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["hummingbot_mcp*"]
[tool.setuptools.package-data]
hummingbot_mcp = ["../scripts/*.sh", "guides/*.md"]
[tool.ruff]
line-length = 140
[tool.ruff.lint]
select = [
"E", # https://docs.astral.sh/ruff/rules/#error-e
"F", # https://docs.astral.sh/ruff/rules/#pyflakes-f
"I", # https://docs.astral.sh/ruff/rules/#isort-i
"FA", # https://docs.astral.sh/ruff/rules/#flake8-future-annotations-fa
"UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up
"RUF100", # https://docs.astral.sh/ruff/rules/#ruff-specific-rules-ruf
]
ignore = ["UP031"] # https://docs.astral.sh/ruff/rules/printf-string-formatting/
[tool.ruff.lint.isort]
combine-as-imports = true
[dependency-groups]
dev = ["ruff"]