Skip to content
Snippets Groups Projects
Select Git revision
  • 81bedf040a51166c1ef0ade1f18c2aff97c3158e
  • master default protected
  • Binary
  • add-version-information
  • os-path-join
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
15 results

setup.py

Blame
  • Forked from Gregory Ashton / PyFstat
    64 commits behind the upstream repository.
    David Keitel's avatar
    David Keitel authored
     -optional import of pyCUDA package only if requested
     -including kernel .cu files in packaging
    7ae31caa
    History
    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']},
          )