Files
neuron-tai/pyproject.toml

27 lines
785 B
TOML

[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "distributed-inference-network"
version = "0.1.0"
description = "Distributed Inference Network monorepo root"
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["pytest>=8", "openai>=1", "langchain-openai>=0.1", "cryptography>=41"]
[tool.setuptools]
packages = []
[tool.ruff]
# Protobuf/gRPC stubs are regenerated by scripts/generate_native_protocol.py;
# linting them would drift the checked-in files from the generator's output.
extend-exclude = ["packages/node/meshnet_node/native_protocol/generated"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests that download models, require GPUs, or exercise external integrations",
]