-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.91 KB
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>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gfdl"
version = "0.2.0.dev0"
description = "Gradient Free Deep Learning (GFDL) networks including single and multi layer random vector functional link (RVFL) networks and extreme learning machines (ELMs)"
requires-python = ">=3.12"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dependencies = ["numpy>=2.0.0",
"scikit-learn>=1.5.0",
"scipy>=1.13.0",
"packaging>=24.0"]
[project.urls]
source = "https://github.com/lanl/GFDL"
download = "https://github.com/lanl/GFDL/releases"
tracker = "https://github.com/lanl/GFDL/issues"
documentation = "https://lanl.github.io/GFDL/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
gfdl = ["testdata/**/*"]
[project.optional-dependencies]
test = [
"ucimlrepo",
"pytest",
"pytest-cov",
]
[tool.numpydoc_validation]
checks = [
"all", # report on all checks, except the below
"EX01", # we don't require examples sections yet
"SA01", # we don't require "See Also" sections
"ES01", # we don't require extended summaries
]
exclude = [
'\.__init__$',
'\._check_voting$',
'\._forward$',
'EnsembleGFDL(\.|$)', # ignore base class
'GFDL(\.|$)', # ignore base class
]