kolibri-engine 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.
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# --- OS / editor ---
|
|
2
|
+
.DS_Store
|
|
3
|
+
*.swp
|
|
4
|
+
.idea/
|
|
5
|
+
.vscode/
|
|
6
|
+
|
|
7
|
+
# --- Python ---
|
|
8
|
+
__pycache__/
|
|
9
|
+
*.py[cod]
|
|
10
|
+
*.egg-info/
|
|
11
|
+
.eggs/
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
.ruff_cache/
|
|
14
|
+
.mypy_cache/
|
|
15
|
+
.coverage
|
|
16
|
+
.coverage.*
|
|
17
|
+
coverage.xml
|
|
18
|
+
htmlcov/
|
|
19
|
+
.venv/
|
|
20
|
+
venv/
|
|
21
|
+
dist/
|
|
22
|
+
build/
|
|
23
|
+
|
|
24
|
+
# --- Node / TS ---
|
|
25
|
+
node_modules/
|
|
26
|
+
.next/
|
|
27
|
+
.turbo/
|
|
28
|
+
*.tsbuildinfo
|
|
29
|
+
out/
|
|
30
|
+
|
|
31
|
+
# --- Generated token outputs are committed? No — regenerated in CI ---
|
|
32
|
+
packages/tokens/dist/
|
|
33
|
+
apps/web/.next/
|
|
34
|
+
|
|
35
|
+
# --- Local secrets (never committed; enforced by hooks) ---
|
|
36
|
+
.env
|
|
37
|
+
.env.*
|
|
38
|
+
*.pem
|
|
39
|
+
*.key
|
|
40
|
+
|
|
41
|
+
# --- SBOM / scan artifacts (regenerated in CI) ---
|
|
42
|
+
sbom*.json
|
|
43
|
+
sbom*.xml
|
|
44
|
+
trivy-results.*
|
|
45
|
+
|
|
46
|
+
# Next.js generated
|
|
47
|
+
next-env.d.ts
|
|
48
|
+
|
|
49
|
+
# hypothesis example database
|
|
50
|
+
.hypothesis/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kolibri-engine
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reserved by Voltry. Kolibri, the Voltry modeling engine, is not distributed on PyPI.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# kolibri-engine
|
|
10
|
+
|
|
11
|
+
Name reserved by Voltry. Kolibri is Voltry's internal modeling engine and is
|
|
12
|
+
not distributed on PyPI. This package intentionally installs nothing.
|
|
13
|
+
|
|
14
|
+
It is unrelated to the Kolibri learning platform by Learning Equality, which
|
|
15
|
+
lives at the `kolibri` name on PyPI.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# kolibri-engine
|
|
2
|
+
|
|
3
|
+
Name reserved by Voltry. Kolibri is Voltry's internal modeling engine and is
|
|
4
|
+
not distributed on PyPI. This package intentionally installs nothing.
|
|
5
|
+
|
|
6
|
+
It is unrelated to the Kolibri learning platform by Learning Equality, which
|
|
7
|
+
lives at the `kolibri` name on PyPI.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
# Honest name reservation: Kolibri is Voltry's internal modeling engine and is
|
|
3
|
+
# not distributed on PyPI. This stub exists so the name cannot be squatted and
|
|
4
|
+
# ships no importable modules (deliberately: `kolibri` on PyPI belongs to
|
|
5
|
+
# Learning Equality's unrelated project, and we must never shadow it).
|
|
6
|
+
name = "kolibri-engine"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name reserved by Voltry. Kolibri, the Voltry modeling engine, is not distributed on PyPI."
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["hatchling"]
|
|
15
|
+
build-backend = "hatchling.build"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
bypass-selection = true
|