blob: 9314a5fea4e6eba1c358fd1a9904401a4588c002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kaft-mvp"
version = "0.1.0"
description = "Minimal anonymous reproduction of Kronecker-Aligned Feedback Training"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.0",
"torch-geometric>=2.4",
"numpy>=1.24",
"pandas>=2.0",
"matplotlib>=3.7",
"scikit-learn>=1.3",
]
[tool.setuptools.packages.find]
include = ["kaft_mvp*"]
|