episteme-kernel 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.
- episteme_kernel-0.0.1/PKG-INFO +37 -0
- episteme_kernel-0.0.1/README.md +25 -0
- episteme_kernel-0.0.1/pyproject.toml +22 -0
- episteme_kernel-0.0.1/setup.cfg +4 -0
- episteme_kernel-0.0.1/src/episteme_kernel/__init__.py +9 -0
- episteme_kernel-0.0.1/src/episteme_kernel.egg-info/PKG-INFO +37 -0
- episteme_kernel-0.0.1/src/episteme_kernel.egg-info/SOURCES.txt +7 -0
- episteme_kernel-0.0.1/src/episteme_kernel.egg-info/dependency_links.txt +1 -0
- episteme_kernel-0.0.1/src/episteme_kernel.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: episteme-kernel
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name-defense stub for the episteme cognitive kernel. episteme does not install from PyPI — see the project README for the two real install paths.
|
|
5
|
+
License: AGPL-3.0-or-later
|
|
6
|
+
Project-URL: Homepage, https://github.com/junjslee/episteme
|
|
7
|
+
Project-URL: Install, https://github.com/junjslee/episteme/blob/master/INSTALL.md
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# episteme-kernel — name-defense stub
|
|
14
|
+
|
|
15
|
+
This directory is a minimal, ready-to-publish PyPI package whose only job is
|
|
16
|
+
to hold the `episteme-kernel` name for the project (PRODUCT_MASTER_PLAN §9.2,
|
|
17
|
+
decision (a)+(c), Event 143). Importing it raises `ImportError` with pointers
|
|
18
|
+
to the two real install paths — the Claude Code plugin and a source checkout.
|
|
19
|
+
`episteme` itself is squatted on PyPI by an unrelated package; this stub keeps
|
|
20
|
+
the fallback name available for a future packaged kernel, should real demand
|
|
21
|
+
for a pip-native install ever appear (that would be §9.2 option (b), a
|
|
22
|
+
separate decision).
|
|
23
|
+
|
|
24
|
+
It is **not** wired into CI on purpose: publishing claims a public namespace
|
|
25
|
+
and cannot be unclaimed, so it is an operator action.
|
|
26
|
+
|
|
27
|
+
## Publish (operator-run, one time)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
cd packaging/episteme-kernel-stub
|
|
31
|
+
python -m build
|
|
32
|
+
twine upload dist/*
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Version stays `0.0.1` until the name ever carries a real package. Do not add
|
|
36
|
+
this directory to the wheel/sdist of the main project; it is a sibling
|
|
37
|
+
artifact, not a dependency.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# episteme-kernel — name-defense stub
|
|
2
|
+
|
|
3
|
+
This directory is a minimal, ready-to-publish PyPI package whose only job is
|
|
4
|
+
to hold the `episteme-kernel` name for the project (PRODUCT_MASTER_PLAN §9.2,
|
|
5
|
+
decision (a)+(c), Event 143). Importing it raises `ImportError` with pointers
|
|
6
|
+
to the two real install paths — the Claude Code plugin and a source checkout.
|
|
7
|
+
`episteme` itself is squatted on PyPI by an unrelated package; this stub keeps
|
|
8
|
+
the fallback name available for a future packaged kernel, should real demand
|
|
9
|
+
for a pip-native install ever appear (that would be §9.2 option (b), a
|
|
10
|
+
separate decision).
|
|
11
|
+
|
|
12
|
+
It is **not** wired into CI on purpose: publishing claims a public namespace
|
|
13
|
+
and cannot be unclaimed, so it is an operator action.
|
|
14
|
+
|
|
15
|
+
## Publish (operator-run, one time)
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
cd packaging/episteme-kernel-stub
|
|
19
|
+
python -m build
|
|
20
|
+
twine upload dist/*
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Version stays `0.0.1` until the name ever carries a real package. Do not add
|
|
24
|
+
this directory to the wheel/sdist of the main project; it is a sibling
|
|
25
|
+
artifact, not a dependency.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "episteme-kernel"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name-defense stub for the episteme cognitive kernel. episteme does not install from PyPI — see the project README for the two real install paths."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "AGPL-3.0-or-later" }
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/junjslee/episteme"
|
|
19
|
+
Install = "https://github.com/junjslee/episteme/blob/master/INSTALL.md"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools.packages.find]
|
|
22
|
+
where = ["src"]
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Name-defense stub: episteme does not install from PyPI."""
|
|
2
|
+
|
|
3
|
+
raise ImportError(
|
|
4
|
+
"episteme-kernel is a name-defense stub, not the product. episteme's "
|
|
5
|
+
"install units are the Claude Code plugin "
|
|
6
|
+
"(/plugin marketplace add junjslee/episteme) and a source checkout "
|
|
7
|
+
"(git clone https://github.com/junjslee/episteme && pip install -e .). "
|
|
8
|
+
"See https://github.com/junjslee/episteme/blob/master/INSTALL.md"
|
|
9
|
+
)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: episteme-kernel
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name-defense stub for the episteme cognitive kernel. episteme does not install from PyPI — see the project README for the two real install paths.
|
|
5
|
+
License: AGPL-3.0-or-later
|
|
6
|
+
Project-URL: Homepage, https://github.com/junjslee/episteme
|
|
7
|
+
Project-URL: Install, https://github.com/junjslee/episteme/blob/master/INSTALL.md
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# episteme-kernel — name-defense stub
|
|
14
|
+
|
|
15
|
+
This directory is a minimal, ready-to-publish PyPI package whose only job is
|
|
16
|
+
to hold the `episteme-kernel` name for the project (PRODUCT_MASTER_PLAN §9.2,
|
|
17
|
+
decision (a)+(c), Event 143). Importing it raises `ImportError` with pointers
|
|
18
|
+
to the two real install paths — the Claude Code plugin and a source checkout.
|
|
19
|
+
`episteme` itself is squatted on PyPI by an unrelated package; this stub keeps
|
|
20
|
+
the fallback name available for a future packaged kernel, should real demand
|
|
21
|
+
for a pip-native install ever appear (that would be §9.2 option (b), a
|
|
22
|
+
separate decision).
|
|
23
|
+
|
|
24
|
+
It is **not** wired into CI on purpose: publishing claims a public namespace
|
|
25
|
+
and cannot be unclaimed, so it is an operator action.
|
|
26
|
+
|
|
27
|
+
## Publish (operator-run, one time)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
cd packaging/episteme-kernel-stub
|
|
31
|
+
python -m build
|
|
32
|
+
twine upload dist/*
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Version stays `0.0.1` until the name ever carries a real package. Do not add
|
|
36
|
+
this directory to the wheel/sdist of the main project; it is a sibling
|
|
37
|
+
artifact, not a dependency.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
episteme_kernel
|