-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
90 lines (80 loc) · 2.42 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
[project]
name = "neurostack"
version = "0.12.1"
description = "Build, maintain, and search your knowledge vault. CLI + MCP server with stale note detection, semantic search, and neuroscience-grounded memory."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "Raphael Southall" },
]
keywords = ["knowledge-management", "obsidian", "mcp", "neuroscience", "pkm", "zettelkasten", "rag", "local-first", "knowledge-graph", "semantic-search", "ai-memory", "second-brain"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Text Processing :: Indexing",
]
# Core dependencies — lite mode (FTS5 only, no ML)
dependencies = [
"pyyaml>=6.0",
"watchdog>=4.0",
"mcp[cli]>=1.0",
"httpx>=0.27",
"tomli_w>=1.0",
"pathspec>=0.12",
]
[project.optional-dependencies]
# Full mode — CPU ML (embeddings, summaries)
full = [
"numpy>=1.26",
"sqlite-vec>=0.1.6",
]
# Development
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.4",
]
# OpenAI-compatible HTTP API
api = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sse-starlette>=2.0",
]
[project.scripts]
neurostack = "neurostack.cli:main"
[project.urls]
Homepage = "https://neurostack.sh"
Documentation = "https://neurostack.sh"
Repository = "https://github.com/raphasouthall/neurostack"
Issues = "https://github.com/raphasouthall/neurostack/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/neurostack"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.ruff.lint.per-file-ignores]
"src/neurostack/community.py" = ["E402"]
"src/neurostack/community_search.py" = ["E402"]
"src/neurostack/search.py" = ["E402"]
"src/neurostack/server.py" = ["E402"]
"src/neurostack/watcher.py" = ["E402"]
"src/neurostack/api.py" = ["E402"]
[tool.pytest.ini_options]
testpaths = ["tests"]