-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (44 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nadir"
authors = [
{ name="Bhavnick Minhas", email="[email protected]" },
]
maintainers = [
{ name = "Bhavnick Minhas", email="[email protected]"},
]
description = "Nadir: Cutting-edge PyTorch optimizers for simplicity & composability! 🔥🚀💻"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
license = { text = "Apache 2.0"}
dependencies = [
"torch>=1.13.1",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"torchvision>=0.14.1",
"tqdm",
"wandb"
]
docs = [
"sphinx",
"sphinx-book-theme",
"jupyter-book"
]
[project.urls]
"Homepage" = "https://github.com/OptimalFoundation/nadir"
"Bug Tracker" = "https://github.com/OptimalFoundation/nadir/issues"
[tools.setuptools]
packages = ["nadir"]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = { attr = "nadir.__version__" }