24 lines
501 B
TOML
24 lines
501 B
TOML
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "meshnet-tracker"
|
|
version = "0.1.0"
|
|
description = "Distributed Inference Network node registry and route selection"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"websockets>=13",
|
|
]
|
|
|
|
[project.scripts]
|
|
meshnet-tracker = "meshnet_tracker.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["meshnet_tracker*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
meshnet_tracker = ["*.json", "*.html"]
|