-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
67 lines (60 loc) · 1.56 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "torch-shampoo"
version = "1.0.0"
dependencies = [
"torch>=2.5.0",
]
requires-python = ">=3.10"
authors = [
{name = "Hao-Jun Michael Shi"},
{name = "Tsung-Hsien Lee"},
{name = "Anna Cai"},
{name = "Runa Eschenhagen"},
{name = "Shintaro Iwasaki"},
{name = "Ke Sang"},
{name = "Wang Zhou"},
]
description = "For optimization algorithm research and development."
readme = "README.md"
keywords = ["deep-learning", "neural-networks", "optimization", "shampoo"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
examples = [
"torchvision>=0.15.0",
]
dev = [
"torch-shampoo[examples]",
"pre-commit",
"ruff",
"usort",
"mypy",
"expecttest",
]
[project.urls]
Repository = "https://github.com/facebookresearch/optimizers.git"
"Bug Tracker" = "https://github.com/facebookresearch/optimizers/issues"
[tool.setuptools]
include-package-data = false
py-modules = [
"commons",
"matrix_functions",
"matrix_functions_types",
"optimizer_modules",
]
[tool.setuptools.packages.find]
include = ["distributed_shampoo*"]
exclude = ["*examples", "*tests"]
[tool.usort]
first_party_detection = false