68 lines
1.7 KiB
TOML
68 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "vaultmesh-cognitive"
|
|
version = "0.1.0"
|
|
description = "VaultMesh MCP Server - Claude as the 7th Organ of VaultMesh"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "VaultMesh Technologies", email = "sovereign@vaultmesh.io"}
|
|
]
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Topic :: Security :: Cryptography",
|
|
"Topic :: System :: Systems Administration",
|
|
]
|
|
keywords = ["mcp", "vaultmesh", "ai", "cognitive", "blockchain", "cryptography"]
|
|
|
|
dependencies = [
|
|
"mcp>=0.9.0",
|
|
"blake3>=0.3.0",
|
|
"pynacl>=1.5.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"ruff>=0.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
vaultmesh-mcp = "vaultmesh_mcp.server:run_standalone"
|
|
|
|
[project.urls]
|
|
Homepage = "https://vaultmesh.io"
|
|
Documentation = "https://docs.vaultmesh.io"
|
|
Repository = "https://github.com/vaultmesh/cognitive-integration"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["packages"]
|
|
include = ["vaultmesh_mcp*"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP", "B"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_functions = ["test_*"]
|
|
addopts = "-v --tb=short"
|