From 9fee5b97957d2dd7196baaad9fd3c0d7e94da803 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 17 Feb 2026 19:47:45 -0500 Subject: [PATCH] pyproject.toml: new file, metadata copied from setup.py --- 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..4dbe9a3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[build-system] +requires = ["setuptools >= 61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "dunshire" +version = "0.1.3" +description = "Library to solve linear games over symmetric cones" +readme = "doc/README.rst" +requires-python = ">=3.11" +keywords = ["game theory", "cone programming", "optimization"] +license = "AGPL-3.0-or-later" +classifiers = [ + "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3", + "Intended Audience :: Science/Research" +] +dependencies = ["cvxopt"] + +[tool.setuptools.packages.find] +where = ["dunshire"] -- 2.51.0