Files
pyRBM/pyproject.toml
T
jens 6ef577c769 - fixed armadillo data read
- added shape to layer
- changed construction of layer from Stack factory
- fixed rms_error_accu scaling
- RBM: added image display using opencv
- improved Status print
2025-12-17 17:05:40 +01:00

24 lines
419 B
TOML

requires = [
"setuptools>=61.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyRbm"
description = "Python Restricted Boltzmann Machine"
dynamic = ["version"]
requires-python = ">=3.12"
authors = [
{ name = "Jens Ahrensfeld" }
]
dependencies = [
"numpy",
"opencv-python",
"opencv-contrib-python"
]
readme = "README.md"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["rbm"]