diff --git a/MANIFEST.in b/MANIFEST.in index 73c86dbb..e002f01c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include AUTHORS CHANGES INSTALL LICENSE README +include AUTHORS CHANGES INSTALL LICENSE README.rst recursive-include scikits *.h recursive-include demos *.py recursive-include doc * diff --git a/scikits/cuda/cudadrv.py b/scikits/cuda/cudadrv.py index 8ca87b70..13ff851d 100644 --- a/scikits/cuda/cudadrv.py +++ b/scikits/cuda/cudadrv.py @@ -2,8 +2,6 @@ """ Python interface to CUDA driver functions. - -Note: this module does not explicitly depend on PyCUDA. """ import sys, ctypes diff --git a/scikits/cuda/cudart.py b/scikits/cuda/cudart.py index b79e29b8..10a349a6 100644 --- a/scikits/cuda/cudart.py +++ b/scikits/cuda/cudart.py @@ -2,13 +2,9 @@ """ Python interface to CUDA runtime functions. - -Note: this module does not explicitly depend on PyCUDA. """ -import sys -import ctypes -import atexit +import sys, ctypes, atexit import numpy as np # Load CUDA runtime library: