forked from microsoft/microxcaling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 997 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "mx"
dynamic = ["version"]
description = 'The Microsoft MX floating point library'
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"torch==2.2.0",
"torchvision==0.16",
"torchaudio==2.1.0"
]
license = { file = "LICENSE" }
keywords = ["mx", "floating point", "math", "mathematics", "machine learning", "deep learning", "artificial intelligence", "ai", "ml", "dl", "torch", "torchvision", "torchaudio"]
authors = [
{ name = "The Microsoft CAST Algorithms Team", email = "[email protected]" },
]
[build-system]
requires = ["hatchling", "hatch-vcs", "pytest", "ninja", "wheel", "torch", "torchvision", "torchaudio"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"/mx",
]
[tool.hatch.build.targets.wheel]
include = [
"/mx",
]
#[tool.hatch.build.hooks.custom]
#path = "build.py"
[tool.hatch.version]
source = "vcs"
raw-options = { root = "." }
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"