30 lines
606 B
TOML
30 lines
606 B
TOML
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "meshnet-node"
|
|
version = "0.1.0"
|
|
description = "Distributed Inference Network node client"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"cryptography>=41",
|
|
"huggingface-hub>=0.20",
|
|
"accelerate>=0.28",
|
|
"bitsandbytes>=0.43",
|
|
"rich>=13",
|
|
"safetensors>=0.4",
|
|
"torch>=2.1",
|
|
"transformers>=4.39",
|
|
"websockets>=13",
|
|
"zstandard>=0.22",
|
|
]
|
|
|
|
[project.scripts]
|
|
meshnet-node = "meshnet_node.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["meshnet_node*"]
|