generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) · 2.06 KB
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
68
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aws-hp-launcher"
version = "0.1.0"
description = "AWS HyperPod Launcher for distributed training"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Amazon Web Services"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
"hydra-core==1.3.2",
"omegaconf>=2.2,<2.3",
"pynvml==11.4.1",
"requests==2.26.0",
"tqdm==4.62.3",
"zstandard==0.15.2",
"tensorboard==2.12.0",
"boto3==1.35.66",
"PyYAML>=6.0",
"pydantic>=2.0.0",
"sagemaker>=2.0.0",
"pytest-xdist",
"pytest-cov",
"pytest-subtests",
]
[project.urls]
Homepage = "https://github.com/aws/sagemaker-hyperpod-recipes"
Repository = "https://github.com/aws/sagemaker-hyperpod-recipes"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["launcher"]
[tool.hatch.build.targets.wheel.force-include]
"launcher/nemo/nemo_framework_launcher/launcher_scripts/nemo_launcher" = "nemo_launcher"
[tool.pytest.ini_options]
minversion = 7.0
# durations=0 will display all tests execution time, sorted in ascending order starting from from the slowest one.
# -vv will also display tests with durration = 0.00s
addopts = [
"--cache-clear",
"--quiet",
# Uncomment this line to see durations
# "--durations=0",
"-n=auto",
"--cov=launcher/",
"--cov=hyperpod_recipes/",
# uncomment this line to see a detailed HTML test coverage report instead of the usual summary table output to stdout.
# "--cov-report=html"
]
testpaths = ["tests"]
norecursedirs = [".eggs", ".pytest_cache", "*.egg-info", ".git", "build"]