Skip to content
Snippets Groups Projects
Select Git revision
  • 51d107a0a278955ef7330c6bb8bb74ae90f4998d
  • master default protected
  • 72-improve-docs-for_optimal_setup
  • os-path-join
  • develop-GA
  • add-higher-spindown-components
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

setup.py

Blame
  • Gregory Ashton's avatar
    Gregory Ashton authored
    Transforms the single pyfstat.py into a python module splitting the
    relevant code into separate sub-files in pyfstat. This should result in
    improved readability.
    51d107a0
    History
    setup.py 213 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'],
          )