diff options
| author | Anonymous Authors <anonymous@example.com> | 2026-07-24 11:07:23 -0500 |
|---|---|---|
| committer | Anonymous Authors <anonymous@example.com> | 2026-07-24 11:07:23 -0500 |
| commit | e01b690cb0b5f447c95598e8f2c1abaa17c17363 (patch) | |
| tree | aaff46750feca7dab854141dcb4eab2080279a56 /pyproject.toml | |
Add anonymous KAFT MVP reproduction
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9314a5f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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*"] |
