-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (66 loc) · 1.93 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
# See PEP-517 and PEP-518 for details.
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nag-gs"
# version = "0.0.0"
description = "NAG-GS: Nesterov Accelerated Gradients with Gauss-Siedel splitting"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Daniel Bershatsky", email = "daniel.bershatsky@gmail.com"},
{name = "Daniil Merkulov", email = "bratishka.mipt@gmail.com"},
]
keywords = [
"optimizer",
"accelerated-optimizer",
"momentum-optimizer",
"machine-learning",
"optimization-and-control",
]
classifiers = [
"Development Status :: 3 - Alpha", # 4 - Beta, 5 - Production/Stable
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy~=1.22",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest>=6.0.0",
]
jax = [
"chex>=0.1.5",
"jax>=0.3.20",
"jax>=0.1.3",
]
pytorch = [
"torch~=1.11",
]
[project.urls]
homepage = "https://github.com/skolai/na-gs"
documentation = "https://github.com/skolai/na-gs"
repository = "https://github.com/skolai/na-gs"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -m 'not benchmark'"
testpaths = ["tests"]
[tool.setuptools.packages.find]
namespaces = true
[tool.setuptools_scm]
write_to = "nag_gs/version.py"