File size: 1,258 Bytes
6993919 | 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rugmunch"
version = "0.1.0"
description = "Python SDK for Rug Munch Intelligence — sovereign crypto intelligence platform"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Rug Munch Intelligence", email = "sdk@rugmunch.io"},
]
keywords = ["crypto", "rug-pull", "blockchain", "intelligence", "mcp", "x402"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.25",
"pydantic>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"ruff>=0.1",
]
[project.urls]
Homepage = "https://rugmunch.io"
Documentation = "https://docs.rugmunch.io"
Repository = "https://github.com/Rug-Munch-Media-LLC/rug-munch-intelligence-mcp"
[tool.setuptools.packages.find]
include = ["rugmunch_sdk*"]
exclude = ["rugmunch*", "test*"]
|