logika-sdk 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.
- logika_sdk-0.0.1/.gitignore +52 -0
- logika_sdk-0.0.1/PKG-INFO +21 -0
- logika_sdk-0.0.1/README.md +10 -0
- logika_sdk-0.0.1/logika_sdk/__init__.py +8 -0
- logika_sdk-0.0.1/pyproject.toml +19 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# macOS
|
|
2
|
+
.DS_Store
|
|
3
|
+
|
|
4
|
+
# Local agent tooling (machine-specific, not part of the repository layout)
|
|
5
|
+
.serena/
|
|
6
|
+
.mcp.json
|
|
7
|
+
**/.claude/settings.local.json
|
|
8
|
+
|
|
9
|
+
# Python
|
|
10
|
+
.venv/
|
|
11
|
+
__pycache__/
|
|
12
|
+
*.pyc
|
|
13
|
+
.pytest_cache/
|
|
14
|
+
.ruff_cache/
|
|
15
|
+
|
|
16
|
+
# Node / TypeScript
|
|
17
|
+
node_modules/
|
|
18
|
+
dist/
|
|
19
|
+
dist-ssr/
|
|
20
|
+
coverage/
|
|
21
|
+
*.tsbuildinfo
|
|
22
|
+
|
|
23
|
+
# stray local debug transcripts (e.g. `vitest > scratch_debug.log`)
|
|
24
|
+
scratch_debug.log
|
|
25
|
+
|
|
26
|
+
# Go
|
|
27
|
+
/src/bin/
|
|
28
|
+
# stray `go build ./cmd/<name>` output left at src/ root (no -o given)
|
|
29
|
+
/src/generate
|
|
30
|
+
/src/logika
|
|
31
|
+
/src/server
|
|
32
|
+
|
|
33
|
+
# local credentials (never committed)
|
|
34
|
+
.env
|
|
35
|
+
.env.production
|
|
36
|
+
|
|
37
|
+
# promo: local config + secrets (admin/promo/config.example.toml documents
|
|
38
|
+
# every key; config.toml and secrets.toml are the owner's real values)
|
|
39
|
+
/admin/promo/config.toml
|
|
40
|
+
/admin/promo/secrets.toml
|
|
41
|
+
# stray per-member lockfile: uv workspaces keep a single root uv.lock; running
|
|
42
|
+
# `uv` from admin/promo/ regenerates this one, which must never be committed.
|
|
43
|
+
/admin/promo/uv.lock
|
|
44
|
+
|
|
45
|
+
# harness-managed implementer worktrees
|
|
46
|
+
.claude/worktrees/
|
|
47
|
+
|
|
48
|
+
# run store: history db + streamed logs; the committed repository settings
|
|
49
|
+
# layer (.nock/settings.toml) is deliberately not ignored (settings.py layer 2)
|
|
50
|
+
.nock/*
|
|
51
|
+
!.nock/settings.toml
|
|
52
|
+
.nock/settings.local.toml
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: logika-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Logika Python SDK — structured logging for the Logika platform. Name reservation for the upcoming Logika release.
|
|
5
|
+
Project-URL: Homepage, https://logika.host
|
|
6
|
+
Author: Parallel Works SL
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: logika,observability,sdk,structured-logging
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# logika-sdk
|
|
13
|
+
|
|
14
|
+
The Logika Python SDK — structured logging for the
|
|
15
|
+
[Logika](https://logika.host) platform.
|
|
16
|
+
|
|
17
|
+
> **Name reservation.** This `0.0.1` release reserves the `logika-sdk` name on
|
|
18
|
+
> PyPI for the upcoming release of Logika, a structured-logging platform. It
|
|
19
|
+
> contains no functional code yet; the real SDK ships at a later version.
|
|
20
|
+
|
|
21
|
+
Learn more at **https://logika.host**.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# logika-sdk
|
|
2
|
+
|
|
3
|
+
The Logika Python SDK — structured logging for the
|
|
4
|
+
[Logika](https://logika.host) platform.
|
|
5
|
+
|
|
6
|
+
> **Name reservation.** This `0.0.1` release reserves the `logika-sdk` name on
|
|
7
|
+
> PyPI for the upcoming release of Logika, a structured-logging platform. It
|
|
8
|
+
> contains no functional code yet; the real SDK ships at a later version.
|
|
9
|
+
|
|
10
|
+
Learn more at **https://logika.host**.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Name reservation for the Logika Python SDK (https://logika.host).
|
|
2
|
+
|
|
3
|
+
This 0.0.1 placeholder reserves the ``logika-sdk`` name on PyPI for the
|
|
4
|
+
upcoming release; it carries no functional code. The real SDK ships at a
|
|
5
|
+
later version.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "logika-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Logika Python SDK — structured logging for the Logika platform. Name reservation for the upcoming Logika release."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{ name = "Parallel Works SL" }]
|
|
13
|
+
keywords = ["logika", "structured-logging", "observability", "sdk"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://logika.host"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["logika_sdk"]
|