mirror of
https://github.com/deepseek-ai/DeepSeek-V3.git
synced 2025-04-19 18:18:57 -04:00
19 lines
434 B
TOML
19 lines
434 B
TOML
#:schema https://json.schemastore.org/pyproject.json
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "multi_node_test"
|
|
requires-python = ">=3.12,<3.13"
|
|
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#static-vs-dynamic-metadata
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"numpy>=2.2.2",
|
|
"torch>=2.4.1",
|
|
]
|
|
|
|
|
|
[tool.setuptools]
|
|
packages = ["multi_node_test"]
|