-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
48 lines (40 loc) · 1.44 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pytorch-warmup"
description = "A PyTorch Extension for Learning Rate Warmup"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Takenori Yamamoto", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
dependencies = ["torch>=1.9"]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/Tony-Y/pytorch_warmup"
"Bug Reports" = "https://github.com/Tony-Y/pytorch_warmup/issues"
[tool.setuptools]
packages = ["pytorch_warmup"]
[tool.setuptools.dynamic]
version = { attr = "pytorch_warmup.__version__" }