kisama 0.3.0__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.
kisama-0.3.0/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.3
2
+ Name: kisama
3
+ Version: 0.3.0
4
+ Summary: kisama agent for python
5
+ Author: liming
6
+ Author-email: liming <liming2038@gmail.com>
7
+ Requires-Dist: aiohttp>=3.14.1
8
+ Requires-Dist: croniter>=6.2.3
9
+ Requires-Dist: ecdsa>=0.19.2
10
+ Requires-Dist: eciespy>=0.4.6
11
+ Requires-Dist: fastapi>=0.139.0
12
+ Requires-Dist: noiseprotocol>=0.3.1
13
+ Requires-Dist: psutil>=7.2.2
14
+ Requires-Dist: pycryptodome>=3.23.0
15
+ Requires-Dist: pydantic>=2.13.4
16
+ Requires-Dist: starlette>=1.3.1
17
+ Requires-Dist: uvicorn>=0.49.0
18
+ Requires-Dist: websockets>=16.0
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown
21
+
kisama-0.3.0/README.md ADDED
File without changes
@@ -0,0 +1,30 @@
1
+ [project]
2
+ name = "kisama"
3
+ version = "0.3.0"
4
+ description = "kisama agent for python"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "liming", email = "liming2038@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.10"
10
+ dependencies = [
11
+ "aiohttp>=3.14.1",
12
+ "croniter>=6.2.3",
13
+ "ecdsa>=0.19.2",
14
+ "eciespy>=0.4.6",
15
+ "fastapi>=0.139.0",
16
+ "noiseprotocol>=0.3.1",
17
+ "psutil>=7.2.2",
18
+ "pycryptodome>=3.23.0",
19
+ "pydantic>=2.13.4",
20
+ "starlette>=1.3.1",
21
+ "uvicorn>=0.49.0",
22
+ "websockets>=16.0",
23
+ ]
24
+
25
+ [project.scripts]
26
+ kisama = "kisama.agent:main"
27
+
28
+ [build-system]
29
+ requires = ["uv_build>=0.11.26,<0.12.0"]
30
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from kisama!")
@@ -0,0 +1,4 @@
1
+ from kisama.agent import main
2
+
3
+ if __name__ == "__main__":
4
+ main()