eno-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.
- eno_sdk-0.0.1/.gitignore +80 -0
- eno_sdk-0.0.1/LICENSE +18 -0
- eno_sdk-0.0.1/PKG-INFO +13 -0
- eno_sdk-0.0.1/README.md +3 -0
- eno_sdk-0.0.1/eno/__init__.py +7 -0
- eno_sdk-0.0.1/eno/__version__.py +1 -0
- eno_sdk-0.0.1/pyproject.toml +18 -0
eno_sdk-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
node_modules/
|
|
2
|
+
.next/
|
|
3
|
+
dist/
|
|
4
|
+
out/
|
|
5
|
+
*.tsbuildinfo
|
|
6
|
+
|
|
7
|
+
# eno's default local root. Running any eno command in the repo cwd with an
|
|
8
|
+
# implicit db path materializes .eno/ here (data.db + blobs). This dir is a
|
|
9
|
+
# STALE local artifact — the real db lives on x1wsl (~/.eno). It once triggered
|
|
10
|
+
# a destructive rebuild against the wrong db; ignore the whole dir so it can
|
|
11
|
+
# never be tracked, and always point eno at x1wsl explicitly.
|
|
12
|
+
.eno/
|
|
13
|
+
|
|
14
|
+
# local sqlite databases (the daemon's data lives outside the repo)
|
|
15
|
+
*.db
|
|
16
|
+
*.db-wal
|
|
17
|
+
*.db-shm
|
|
18
|
+
|
|
19
|
+
# local content-addressed blob store (server/CLI runtime data — dev artifact only)
|
|
20
|
+
blobs/
|
|
21
|
+
|
|
22
|
+
# chat/connect session traces (ENO_CHAT_TRACE_DIR defaults to cwd). Runtime data —
|
|
23
|
+
# the daemon's traces live outside the repo; guards against test runs committing them.
|
|
24
|
+
sessions/
|
|
25
|
+
|
|
26
|
+
# secrets / signing keys — MUST never be committed. Real keys live on the
|
|
27
|
+
# deploy box (0600, outside the repo); these are only ever local dev artifacts.
|
|
28
|
+
eno-signing-key.json
|
|
29
|
+
eno-secrets-key.json
|
|
30
|
+
*-signing-key.json
|
|
31
|
+
*-secrets-key.json
|
|
32
|
+
|
|
33
|
+
# browser-extension packing key + built CRX (route C). The key defines the
|
|
34
|
+
# extension ID — it lives on the deploy box, never in git. The .crx is a build
|
|
35
|
+
# artifact regenerated by deploy/pack.mjs.
|
|
36
|
+
extension/deploy/key.pem
|
|
37
|
+
extension/deploy/*.crx
|
|
38
|
+
|
|
39
|
+
# env
|
|
40
|
+
.env
|
|
41
|
+
.env*.local
|
|
42
|
+
|
|
43
|
+
# ops/conn — connection private keys & runtime artifacts. The MECHANISM lives in
|
|
44
|
+
# ops/conn/ (committed); the KEYS never do. Keys default to ~/.v0-conn (outside
|
|
45
|
+
# the repo); this guards against anyone dropping them inside the tree.
|
|
46
|
+
ops/conn/*.key
|
|
47
|
+
ops/conn/*-cert.pub
|
|
48
|
+
ops/conn/known_hosts
|
|
49
|
+
.v0-conn/
|
|
50
|
+
|
|
51
|
+
# ops/oc — opencode server secrets never belong in the repo (they live on the
|
|
52
|
+
# Mac at ~/.config/opencode/server.env, 0600). Guard against accidental drops.
|
|
53
|
+
ops/oc/server.env
|
|
54
|
+
ops/oc/*.log
|
|
55
|
+
|
|
56
|
+
# logs
|
|
57
|
+
*.log
|
|
58
|
+
|
|
59
|
+
# OS
|
|
60
|
+
.DS_Store
|
|
61
|
+
.dop-build/
|
|
62
|
+
|
|
63
|
+
# scratch clones (not part of eno). agents clone doy here to edit it; these are
|
|
64
|
+
# nested git repos and must never be committed as gitlinks into eno.
|
|
65
|
+
.doy-build/
|
|
66
|
+
.doy-freshtest/
|
|
67
|
+
.doy-edit*/
|
|
68
|
+
.doy-x*/
|
|
69
|
+
|
|
70
|
+
# python (doy inventory bytecode)
|
|
71
|
+
__pycache__/
|
|
72
|
+
*.pyc
|
|
73
|
+
--help-agent
|
|
74
|
+
target/
|
|
75
|
+
sessions/
|
|
76
|
+
--help
|
|
77
|
+
--help-agent-wal
|
|
78
|
+
--help-agent-shm
|
|
79
|
+
--help-wal
|
|
80
|
+
--help-shm
|
eno_sdk-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 BitStep Technology Co., Ltd.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
6
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
9
|
+
following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
12
|
+
portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
15
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
16
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
17
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
18
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
eno_sdk-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: eno-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python SDK for the eno project.
|
|
5
|
+
Author: BitStep Technology Co., Ltd.
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# eno-sdk (Python)
|
|
12
|
+
|
|
13
|
+
Python SDK for the eno project.
|
eno_sdk-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "0.0.1"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "eno-sdk"
|
|
3
|
+
description = "Python SDK for the eno project."
|
|
4
|
+
dynamic = ["version"]
|
|
5
|
+
requires-python = ">=3.11"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
authors = [{ name = "BitStep Technology Co., Ltd." }]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
|
|
10
|
+
[build-system]
|
|
11
|
+
requires = ["hatchling"]
|
|
12
|
+
build-backend = "hatchling.build"
|
|
13
|
+
|
|
14
|
+
[tool.hatch.version]
|
|
15
|
+
path = "eno/__version__.py"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["eno"]
|