21 lines
410 B
TOML
21 lines
410 B
TOML
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "meshnet-gateway"
|
|
version = "0.1.0"
|
|
description = "Distributed Inference Network HTTP gateway"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"zstandard>=0.22",
|
|
]
|
|
|
|
[project.scripts]
|
|
meshnet-gateway = "meshnet_gateway.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["meshnet_gateway*"]
|