-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (97 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
109 lines (97 loc) · 2.71 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "synapse-layer"
version = "1.2.0"
description = "Zero-Knowledge Memory Layer for AI Agents — Cognitive Security Protocol with 4 proprietary seals. Giving Agents a Past. Giving Models a Soul."
readme = "README.md"
license = {text = "Apache 2.0"}
authors = [{name = "Ismael Marchi", email = "founder.synapselayer@proton.me"}]
keywords = [
"ai-agents",
"memory",
"zero-knowledge",
"encryption",
"mcp",
"agentic-ai",
"lgpd",
"cognitive-security",
"differential-privacy",
"neural-handover",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software 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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security :: Cryptography",
]
requires-python = ">=3.10"
dependencies = [
"cryptography>=46.0.7",
"pydantic>=2.4.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.1",
]
[project.optional-dependencies]
langchain = [
"langchain-core>=0.3.0",
]
crewai = [
"crewai>=1.14.0",
]
autogen = [
"autogen-core>=0.7.0",
]
llamaindex = [
"llama-index-core>=0.11.0",
]
semantic-kernel = [
"semantic-kernel>=1.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.23.0",
"respx>=0.21.0",
"black>=24.0.0",
"isort>=5.13.0",
"mypy>=1.8.0",
"ruff>=0.3.0",
]
[project.urls]
Homepage = "https://synapselayer.org"
Repository = "https://github.com/SynapseLayer/synapse-layer"
Documentation = "https://synapselayer.org/docs"
Issues = "https://github.com/SynapseLayer/synapse-layer/issues"
Changelog = "https://github.com/SynapseLayer/synapse-layer/blob/main/CHANGELOG.md"
Security = "https://github.com/SynapseLayer/synapse-layer/blob/main/SECURITY.md"
[tool.setuptools]
packages = ["synapse_layer", "synapse_memory", "synapse_memory.engine", "synapse_memory.crypto", "synapse_memory.backends", "synapse_memory.autosave", "synapse_memory.plugins", "synapse_memory.integrations"]
[tool.setuptools.package-dir]
"" = "."
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=synapse_memory --cov-report=term-missing"
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning:semantic_kernel.memory",
"ignore::DeprecationWarning:typing_extensions",
]
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.",
"pragma: no cover",
]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 100