From 9381d2f242f1ef9f1a6268246e18730c4f1c50b8 Mon Sep 17 00:00:00 2001 From: hashlag <90853356+hashlag@users.noreply.github.com> Date: Sun, 4 Feb 2024 21:23:44 +0300 Subject: [PATCH] add pyproject.toml --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..cb456cb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "neighbours" +version = "0.0.1" + +authors = [ + { name="hashlag", email="90853356+hashlag@users.noreply.github.com" }, +] + +description = "Weighted kNN classifier and Nadaraya-Watson regressor implementation based on random projection forest." +readme = "README.md" + +requires-python = ">=3.8" + +dependencies = [ + 'numpy ~= 1.26.3', +] + +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", +] + +[project.urls] +Homepage = "https://github.com/hashlag/neighbours" +Issues = "https://github.com/hashlag/neighbours/issues" \ No newline at end of file