koi-net 1.0.0b13__tar.gz → 1.0.0b14__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.

Potentially problematic release.


This version of koi-net might be problematic. Click here for more details.

Files changed (32) hide show
  1. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/PKG-INFO +4 -2
  2. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/pyproject.toml +5 -3
  3. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/config.py +1 -1
  4. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/.github/workflows/publish-to-pypi.yml +0 -0
  5. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/.gitignore +0 -0
  6. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/LICENSE +0 -0
  7. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/README.md +0 -0
  8. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/examples/basic_coordinator_node.py +0 -0
  9. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/examples/basic_partial_node.py +0 -0
  10. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/examples/full_node_template.py +0 -0
  11. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/examples/partial_node_template.py +0 -0
  12. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/requirements.txt +0 -0
  13. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/__init__.py +0 -0
  14. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/core.py +0 -0
  15. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/identity.py +0 -0
  16. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/network/__init__.py +0 -0
  17. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/network/graph.py +0 -0
  18. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/network/interface.py +0 -0
  19. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/network/request_handler.py +0 -0
  20. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/network/response_handler.py +0 -0
  21. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/processor/__init__.py +0 -0
  22. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/processor/default_handlers.py +0 -0
  23. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/processor/handler.py +0 -0
  24. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/processor/interface.py +0 -0
  25. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/processor/knowledge_object.py +0 -0
  26. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/__init__.py +0 -0
  27. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/api_models.py +0 -0
  28. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/consts.py +0 -0
  29. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/edge.py +0 -0
  30. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/event.py +0 -0
  31. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/helpers.py +0 -0
  32. {koi_net-1.0.0b13 → koi_net-1.0.0b14}/src/koi_net/protocol/node.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: koi-net
3
- Version: 1.0.0b13
3
+ Version: 1.0.0b14
4
4
  Summary: Implementation of KOI-net protocol in Python
5
5
  Project-URL: Homepage, https://github.com/BlockScience/koi-net/
6
6
  Author-email: Luke Miller <luke@block.science>
@@ -30,7 +30,9 @@ Requires-Python: >=3.10
30
30
  Requires-Dist: httpx>=0.28.1
31
31
  Requires-Dist: networkx>=3.4.2
32
32
  Requires-Dist: pydantic>=2.10.6
33
- Requires-Dist: rid-lib>=3.2.1
33
+ Requires-Dist: python-dotenv>=1.1.0
34
+ Requires-Dist: rid-lib>=3.2.3
35
+ Requires-Dist: ruamel-yaml>=0.18.10
34
36
  Provides-Extra: dev
35
37
  Requires-Dist: build; extra == 'dev'
36
38
  Requires-Dist: twine>=6.0; extra == 'dev'
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "koi-net"
7
- version = "1.0.0-beta.13"
7
+ version = "1.0.0-beta.14"
8
8
  description = "Implementation of KOI-net protocol in Python"
9
9
  authors = [
10
10
  {name = "Luke Miller", email = "luke@block.science"}
@@ -13,10 +13,12 @@ readme = "README.md"
13
13
  requires-python = ">=3.10"
14
14
  license = {file = "LICENSE"}
15
15
  dependencies = [
16
- "rid-lib>=3.2.1",
16
+ "rid-lib>=3.2.3",
17
17
  "networkx>=3.4.2",
18
18
  "httpx>=0.28.1",
19
- "pydantic>=2.10.6"
19
+ "pydantic>=2.10.6",
20
+ "ruamel.yaml>=0.18.10",
21
+ "python-dotenv>=1.1.0"
20
22
  ]
21
23
 
22
24
  [project.optional-dependencies]
@@ -10,7 +10,7 @@ from dotenv import load_dotenv
10
10
  class ServerConfig(BaseModel):
11
11
  host: str | None = "127.0.0.1"
12
12
  port: int | None = 8000
13
- path: str | None = None
13
+ path: str | None = "/koi-net"
14
14
 
15
15
  @property
16
16
  def url(self):
File without changes
File without changes
File without changes
File without changes