-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "koi-net"
version = "2.0.5"
description = "Implementation of KOI-net framework in Python"
maintainers = [
{ name = "Luke Miller", email = "luke@block.science" }
]
authors = [
{ name = "Luke Miller", email = "luke@block.science" },
{ name = "Joshua Jodesty", email = "joshua@block.science" }
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dependencies = [
"rid-lib>=3.2.7",
"networkx>=3.4.2",
"httpx>=0.28.1",
"pydantic>=2.10.6",
"ruamel.yaml>=0.18.10",
"cryptography>=45.0.3",
"fastapi>=0.115.12",
"uvicorn>=0.34.2",
"rich>=14.1.0",
"structlog>=25.4.0",
"pydantic-settings>=2.12.0",
"jsonpointer>=3.0.0",
"colorama>=0.4.6",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-autoapi>=3.6.0",
"sphinx-autodoc-typehints>=3.0.1",
"sphinx-rtd-theme>=3.0.2",
]
[project.scripts]
koi-sh = "koi_net.interfaces.shell:run"
[project.urls]
Homepage = "https://github.com/BlockScience/koi-net/"