-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
76 lines (70 loc) · 2.2 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
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "MS-AMP"
description = "Microsoft automatic mixed precision library"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "Microsoft", email = "[email protected]"},
]
keywords = ["AMP", "FP8"]
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Environment :: GPU :: NVIDIA CUDA :: 11",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"torch",
"transformer-engine@git+https://github.com/NVIDIA/[email protected]",
"colorlog>=6.7.0",
"deepspeed==0.13.1",
"mpi4py",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"flake8-docstrings>=1.7.0",
"flake8-quotes>=3.3.2",
"flake8>=6.0.0",
"pydocstyle>=6.3.0",
"pytest-cov>=4.0.0",
"pytest>=7.2.0",
"yapf>=0.32.0",
]
[project.urls]
homepage = "https://github.com/Azure/MS-AMP"
documentation = "https://github.com/Azure/MS-AMP/blob/main/README.md"
repository = "https://github.com/Azure/MS-AMP.git"
[tool.setuptools]
packages = ["msamp"]
[tool.setuptools.dynamic]
version = {attr = "msamp.__version__"}
[tool.yapf]
based_on_style = "pep8"
column_limit = 120
spaces_before_comment = 4
blank_line_before_module_docstring = "true"
blank_line_before_nested_class_or_def = "false"
dedent_closing_brackets = "true"