-
Notifications
You must be signed in to change notification settings - Fork 394
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.5 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = [
"scikit-build-core[wheels]>=0.10",
]
build-backend = "scikit_build_core.build"
[project]
#name = "aimet"
requires-python = ">=3.8"
dynamic = ["name", "dependencies", "version"]
[project.optional-dependencies]
dev = [
# duplicate build-system.requires for editable mode (non-isolated)
"scikit-build-core[wheels]>=0.10",
# and the rest
]
test = [
"beautifulsoup4",
"deepspeed",
"matplotlib",
"onnxruntime",
"peft",
"pylint<3",
"pytest",
"pytest-github-report",
"pytorch-ignite",
"safetensors",
"spconv",
"transformers",
]
docs = [
"furo",
"nbsphinx",
"pandoc",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-design",
"sphinx-jinja",
"sphinx-rtd-theme",
"sphinx-tabs",
]
[tool.scikit-build]
experimental = true
metadata.name = { provider = "aimet", provider-path = "packaging/plugins/local" }
metadata.dependencies = { provider = "aimet", provider-path = "packaging/plugins/local" }
metadata.version = { provider="aimet", provider-path = "packaging/plugins/local" }
build-dir = "build"
sdist.cmake = false
logging.level = "DEBUG"
strict-config = false
wheel.license-files=[]
wheel.packages=[]
[tool.scikit-build.cmake.define]
CMAKE_BUILD_TYPE="RelWithDebInfo"
CMAKE_CUDA_ARCHITECTURES="70;75;80"
CMAKE_CUDA_FLAGS="--threads=8"
[tool.pytest.ini_options]
xfail_strict = true
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config", "-m", "not cuda"]
markers = [
"cuda: test that require CUDA to be installed",
]