-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hanerma"
version = "1.0.0"
description = "Hierarchical Atomic Nested External Reasoning and Memory Architecture. A zero-error LLM orchestrator."
readme = "README.md"
authors = [
{ name = "HANERMA Core Team", email = "open-source@hanerma.ai" }
]
license = { text = "Apache 2.0" }
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
"faiss-cpu>=1.7.4", # For HCMS Vector indexing
"neo4j>=5.10.0", # For Deep 2 Graph relationships
"redis>=5.0.0", # For multi-tenant state isolation
"httpx>=0.24.1", # For local LLM adapter
"openai>=1.0.0", # OpenRouter + HuggingFace adapters
"python-dotenv>=1.0.0", # Secure credential loading
"numpy>=1.24.0",
"xerv-crayon>=4.0.0" # Tokenization + embeddings for HCMS
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.7.0",
"mkdocs-material>=9.1.21"
]
[project.urls]
"Homepage" = "https://hanerma.ai"
"Repository" = "https://github.com/hanerma/hanerma"
"Bug Tracker" = "https://github.com/hanerma/hanerma/issues"
[project.scripts]
hanerma = "hanerma.cli:main"
[tool.setuptools.packages.find]
where = ["src"]