-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.01 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version", "dependencies"]
name = "nnscaler"
description = "Parallelize DNN Training via A Systematic Way"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "nnScaler Team", email = "nnscaler@service.microsoft.com"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
[project.scripts]
nnscaler-train = "nnscaler.cli.train:main"
[project.urls]
Homepage = "https://github.com/microsoft/nnscaler"
[tool.setuptools]
dynamic.version.attr = "nnscaler.version.__version__"
dynamic.dependencies.file = "requirements.txt"
# NOTE:
# the following part only affects wheel, not sdist
# since we are using cppimport, sdist is not needed
packages.find.include = ["nnscaler*"]
package-data = { nnscaler = ["resources/**", "autodist/*.h", "autodist/*.cpp"] }
[tool.coverage.run]
omit = [
"nnscaler/algorithm/ops/conv.py",
"nnscaler/graph/function/conv.py",
"nnscaler/graph/tracer/_pytree.py"
]