forked from singularityjason/lightning-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.43 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lightning-memory"
version = "0.4.1"
description = "Decentralized agent memory for the Lightning economy. Nostr identity, L402 payments, semantic search."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Jason Sosa" }]
keywords = ["mcp", "lightning", "nostr", "agent-memory", "l402", "ai-agents"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0.0",
]
[project.optional-dependencies]
crypto = ["secp256k1>=0.14.0"]
sync = ["websockets>=12.0", "secp256k1>=0.14.0"]
gateway = ["starlette>=0.40", "uvicorn>=0.30", "httpx>=0.27"]
dev = [
"pytest",
"pytest-asyncio",
"websockets>=12.0",
"secp256k1>=0.14.0",
"starlette>=0.40",
"uvicorn>=0.30",
"httpx>=0.27",
]
[project.urls]
Homepage = "https://github.com/singularityjason/lightning-memory"
Repository = "https://github.com/singularityjason/lightning-memory"
Issues = "https://github.com/singularityjason/lightning-memory/issues"
[project.scripts]
lightning-memory = "lightning_memory.server:main"
lightning-memory-gateway = "lightning_memory.gateway:main"
[tool.hatch.build.targets.wheel]
packages = ["lightning_memory"]