30 lines
683 B
TOML
30 lines
683 B
TOML
[tool.poetry]
|
|
name = "platform-swarm-node-psk"
|
|
version = "0.1.0"
|
|
description = "Allow nodes to exchange join tokens with a PSK"
|
|
authors = ["Ethan Paul <me@enp.one>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.14"
|
|
fastapi = "^0.128.0"
|
|
docker = "^7.1.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit (>=4.5.1,<5.0.0)",
|
|
"ipython (>=9.10.0,<10.0.0)",
|
|
"pre-commit-hooks (>=6.0.0,<7.0.0)",
|
|
"mdformat (>=1.0.0,<2.0.0)",
|
|
"mdformat-gfm (>=1.0.0,<2.0.0)",
|
|
"black (>=26.1.0,<27.0.0)",
|
|
"isort (>=7.0.0,<8.0.0)",
|
|
"blacken-docs (>=1.20.0,<2.0.0)"
|
|
]
|