Select Git revision
Forked from
Gregory Ashton / PyFstat
95 commits behind the upstream repository.
-
David Keitel authored
-optional import of pyCUDA package only if requested -including kernel .cu files in packaging
David Keitel authored-optional import of pyCUDA package only if requested -including kernel .cu files in packaging
setup.py 409 B
#!/usr/bin/env python
from distutils.core import setup
setup(name='PyFstat',
version='0.2',
author='Gregory Ashton',
author_email='gregory.ashton@ligo.org',
packages=['pyfstat'],
include_package_data=True,
package_data={'pyfstat': ['pyCUDAkernels/cudaTransientFstatExpWindow.cu',
'pyCUDAkernels/cudaTransientFstatRectWindow.cu']},
)