From a01ea09c21fa185eae62602e49565a637674c454 Mon Sep 17 00:00:00 2001 From: healeyq3 Date: Tue, 25 Nov 2025 14:34:43 -0800 Subject: [PATCH 1/2] cone access? --- diffqcp/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/diffqcp/__init__.py b/diffqcp/__init__.py index 78a3c3e..c12258c 100644 --- a/diffqcp/__init__.py +++ b/diffqcp/__init__.py @@ -1,3 +1,5 @@ +from . import cones as cones + from .qcp import ( DeviceQCP as DeviceQCP, HostQCP as HostQCP From 351dd3c94b8c8d2cd1ab5bbd5dc96d754169098e Mon Sep 17 00:00:00 2001 From: healeyq3 Date: Tue, 25 Nov 2025 14:40:38 -0800 Subject: [PATCH 2/2] try alternate setup again --- diffqcp/__init__.py | 2 -- pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/diffqcp/__init__.py b/diffqcp/__init__.py index c12258c..78a3c3e 100644 --- a/diffqcp/__init__.py +++ b/diffqcp/__init__.py @@ -1,5 +1,3 @@ -from . import cones as cones - from .qcp import ( DeviceQCP as DeviceQCP, HostQCP as HostQCP diff --git a/pyproject.toml b/pyproject.toml index 43c623c..60a6508 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,8 +15,8 @@ dependencies = [ "scipy>=1.15.3", ] -[tool.setuptools] -packages = ["diffqcp"] +[tool.setuptools.packages.find] +include = ["diffqcp", "diffqcp.*"] [tool.uv.sources] lineax = { git = "https://github.com/patrick-kidger/lineax.git" }