-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cerebrus-pulse-mcp"
version = "0.4.1"
description = "MCP server for Cerebrus Pulse — real-time crypto intelligence API for Hyperliquid perpetuals"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "0xsl1m", email = "sl1m@ghost.love" },
]
keywords = [
"mcp", "crypto", "technical-analysis", "hyperliquid", "x402",
"ai-agent", "cerebrus-pulse", "trading", "micropayments",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
]
[project.urls]
Homepage = "https://cerebruspulse.xyz"
Documentation = "https://cerebruspulse.xyz/overview"
Repository = "https://github.com/0xsl1m/cerebrus-pulse-mcp"
Issues = "https://github.com/0xsl1m/cerebrus-pulse-mcp/issues"
[project.scripts]
cerebrus-pulse-mcp = "cerebrus_pulse_mcp.server:main"