diff options
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*"] |
