18 lines
378 B
TOML
18 lines
378 B
TOML
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "meshnet"
|
|
version = "0.1.0"
|
|
description = "Distributed Inference Network Python SDK"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["openai>=1"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["meshnet*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
meshnet = ["py.typed", "*.pyi"]
|