- Bump anyio from 4.9.0 to 4.10.0 - Bump authlib from 1.6.0 to 1.6.4 - Bump certifi from 2025.7.14 to 2025.8.3 - Bump cffi from 1.17.1 to 2.0.0 - Bump ruamel.yaml.clib from 0.2.12 to 0.2.13 - Bump ruff from 0.12.3 to 0.12.12 - Bump safety from 3.6.0 to 3.6.1 - Bump typer from 0.16.0 to 0.19.1 - Bump typing-extensions from 4.14.1 to 4.15.0
26 lines
526 B
TOML
26 lines
526 B
TOML
[project]
|
|
name = "rns-page-node"
|
|
version = "1.0.0"
|
|
license = "GPL-3.0-only"
|
|
description = "A simple way to serve pages and files over the Reticulum network."
|
|
authors = [
|
|
{name = "Sudo-Ivan"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"rns (>=1.0.0,<1.5.0)"
|
|
]
|
|
|
|
[project.scripts]
|
|
rns-page-node = "rns_page_node.main:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "^0.12.12"
|
|
safety = "^3.6.1"
|
|
|