-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.21 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
[project]
name = "tf-levenberg-marquardt"
version = "1.0.3"
description = "Tensorflow implementation of Levenberg-Marquardt training algorithm"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
maintainers = [
]
keywords = [
"tensorflow",
"optimization",
"levenberg-marquardt",
"gauss-newton",
"training",
"numerical optimization",
"nonlinear least squares",
"second-order methods"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"numpy>=1.22",
"tensorflow>=2.15.0",
]
[project.urls]
"Home-page" = "https://github.com/fabiodimarco/tf-levenberg-marquardt"
"Bug Reports" = "https://github.com/fabiodimarco/tf-levenberg-marquardt/issues"
"Source" = "https://github.com/fabiodimarco/tf-levenberg-marquardt/"