19 lines
490 B
TOML
19 lines
490 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"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
markers = [
|
|
"integration: tests that download models, require GPUs, or exercise external integrations",
|
|
]
|