From 85b78badc6457faf0ec02fb2d6a8919e5526501e Mon Sep 17 00:00:00 2001 From: rfeinman Date: Tue, 27 Sep 2022 11:21:33 -0400 Subject: [PATCH] adding pyproject.toml --- pyproject.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a5ce9f7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[build-system] +requires = ["setuptools>=46.4.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "pytorch-minimize" +version = "0.0.1" +authors = [ + { name="Reuben Feinman", email="reuben.feinman@nyu.edu" }, +] +description = "Newton and Quasi-Newton optimization with PyTorch" +readme = "README.md" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://pytorch-minimize.readthedocs.io" \ No newline at end of file