From 2e41c2fe9e54a7063afe40ea13121dcb42dc45f2 Mon Sep 17 00:00:00 2001 From: Jake Vanderplas Date: Tue, 18 Jun 2019 09:11:35 -0700 Subject: [PATCH] Add packages entry to setup.py metadata Without this entry, pip install fails to add the package to the Python path. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 19ee1555..2289989e 100644 --- a/setup.py +++ b/setup.py @@ -229,6 +229,7 @@ def setup_package(): metadata = dict( name='slycot', + packages=['slycot', 'slycot.tests'], cmake_languages=('C', 'Fortran'), version=VERSION, maintainer="Slycot developers",