brain-neural-core 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- brain_neural_core-0.0.1/PKG-INFO +33 -0
- brain_neural_core-0.0.1/README.md +14 -0
- brain_neural_core-0.0.1/brain_neural_core/__init__.py +19 -0
- brain_neural_core-0.0.1/brain_neural_core.egg-info/PKG-INFO +33 -0
- brain_neural_core-0.0.1/brain_neural_core.egg-info/SOURCES.txt +7 -0
- brain_neural_core-0.0.1/brain_neural_core.egg-info/dependency_links.txt +1 -0
- brain_neural_core-0.0.1/brain_neural_core.egg-info/top_level.txt +1 -0
- brain_neural_core-0.0.1/pyproject.toml +29 -0
- brain_neural_core-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: brain-neural-core
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Project Brain — engineering memory for AI-assisted teams, served to AI agents via MCP. Local-first, BYOK. (Full project on GitHub; this release reserves the name.)
|
|
5
|
+
Author: brainledger-solutions
|
|
6
|
+
License: FSL-1.1-Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/brainledger-solutions/brain-neural-core
|
|
8
|
+
Project-URL: Repository, https://github.com/brainledger-solutions/brain-neural-core
|
|
9
|
+
Keywords: ai,ai-agents,mcp,model-context-protocol,llm,engineering-memory,developer-tools,cli,local-first
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Software Development
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Project Brain — `brain-neural-core`
|
|
21
|
+
|
|
22
|
+
**Engineering memory for AI-assisted teams.** Project Brain captures the
|
|
23
|
+
decisions, business rules, and constraints behind your code and serves them to
|
|
24
|
+
AI agents via the [Model Context Protocol (MCP)](https://modelcontextprotocol.io).
|
|
25
|
+
Local-first, bring-your-own-LLM.
|
|
26
|
+
|
|
27
|
+
> **This PyPI release reserves the package name.** The full project lives on
|
|
28
|
+
> GitHub and is currently installed from source:
|
|
29
|
+
>
|
|
30
|
+
> **https://github.com/brainledger-solutions/brain-neural-core**
|
|
31
|
+
|
|
32
|
+
Licensed under **FSL-1.1-Apache-2.0** (source-available; converts to Apache-2.0
|
|
33
|
+
two years after each release).
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Project Brain — `brain-neural-core`
|
|
2
|
+
|
|
3
|
+
**Engineering memory for AI-assisted teams.** Project Brain captures the
|
|
4
|
+
decisions, business rules, and constraints behind your code and serves them to
|
|
5
|
+
AI agents via the [Model Context Protocol (MCP)](https://modelcontextprotocol.io).
|
|
6
|
+
Local-first, bring-your-own-LLM.
|
|
7
|
+
|
|
8
|
+
> **This PyPI release reserves the package name.** The full project lives on
|
|
9
|
+
> GitHub and is currently installed from source:
|
|
10
|
+
>
|
|
11
|
+
> **https://github.com/brainledger-solutions/brain-neural-core**
|
|
12
|
+
|
|
13
|
+
Licensed under **FSL-1.1-Apache-2.0** (source-available; converts to Apache-2.0
|
|
14
|
+
two years after each release).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Project Brain (brain-neural-core) — PyPI name placeholder.
|
|
2
|
+
|
|
3
|
+
This release reserves the PyPI name. The full project — engineering memory for
|
|
4
|
+
AI-assisted teams, served to AI agents via the Model Context Protocol (MCP) —
|
|
5
|
+
lives on GitHub and is currently installed from source:
|
|
6
|
+
|
|
7
|
+
https://github.com/brainledger-solutions/brain-neural-core
|
|
8
|
+
|
|
9
|
+
Licensed under FSL-1.1-Apache-2.0.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.0.1"
|
|
13
|
+
PROJECT_URL = "https://github.com/brainledger-solutions/brain-neural-core"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def main() -> None:
|
|
17
|
+
print("Project Brain (brain-neural-core)")
|
|
18
|
+
print("This PyPI entry reserves the name. For now, install from source:")
|
|
19
|
+
print(f" {PROJECT_URL}")
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: brain-neural-core
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Project Brain — engineering memory for AI-assisted teams, served to AI agents via MCP. Local-first, BYOK. (Full project on GitHub; this release reserves the name.)
|
|
5
|
+
Author: brainledger-solutions
|
|
6
|
+
License: FSL-1.1-Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/brainledger-solutions/brain-neural-core
|
|
8
|
+
Project-URL: Repository, https://github.com/brainledger-solutions/brain-neural-core
|
|
9
|
+
Keywords: ai,ai-agents,mcp,model-context-protocol,llm,engineering-memory,developer-tools,cli,local-first
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Software Development
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Project Brain — `brain-neural-core`
|
|
21
|
+
|
|
22
|
+
**Engineering memory for AI-assisted teams.** Project Brain captures the
|
|
23
|
+
decisions, business rules, and constraints behind your code and serves them to
|
|
24
|
+
AI agents via the [Model Context Protocol (MCP)](https://modelcontextprotocol.io).
|
|
25
|
+
Local-first, bring-your-own-LLM.
|
|
26
|
+
|
|
27
|
+
> **This PyPI release reserves the package name.** The full project lives on
|
|
28
|
+
> GitHub and is currently installed from source:
|
|
29
|
+
>
|
|
30
|
+
> **https://github.com/brainledger-solutions/brain-neural-core**
|
|
31
|
+
|
|
32
|
+
Licensed under **FSL-1.1-Apache-2.0** (source-available; converts to Apache-2.0
|
|
33
|
+
two years after each release).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
brain_neural_core
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "brain-neural-core"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Project Brain — engineering memory for AI-assisted teams, served to AI agents via MCP. Local-first, BYOK. (Full project on GitHub; this release reserves the name.)"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = { text = "FSL-1.1-Apache-2.0" }
|
|
8
|
+
authors = [{ name = "brainledger-solutions" }]
|
|
9
|
+
keywords = ["ai", "ai-agents", "mcp", "model-context-protocol", "llm", "engineering-memory", "developer-tools", "cli", "local-first"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 4 - Beta",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"Programming Language :: Python :: 3.10",
|
|
15
|
+
"Programming Language :: Python :: 3.11",
|
|
16
|
+
"Programming Language :: Python :: 3.12",
|
|
17
|
+
"Topic :: Software Development",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/brainledger-solutions/brain-neural-core"
|
|
22
|
+
Repository = "https://github.com/brainledger-solutions/brain-neural-core"
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["setuptools>=61.0"]
|
|
26
|
+
build-backend = "setuptools.build_meta"
|
|
27
|
+
|
|
28
|
+
[tool.setuptools]
|
|
29
|
+
packages = ["brain_neural_core"]
|