Skip to content
Snippets Groups Projects
Select Git revision
  • 800659c1a60948ad23245d3677e89eb62c3f879d
  • master default protected
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

glitch_robust_search_make_simulated_data.py

Blame
  • Forked from Gregory Ashton / PyFstat
    Source project has a limited visibility.
    setup.py 657 B
    # -*- coding: utf-8 -*-
    """
    Created on Sun Jan 27 09:43:16 2013
    
    @author: Daniel
    """
    import pykat
    from distutils.core import setup
    
    REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
    
    setup(
        name='PyKat',
        version=pykat.__version__,
        author='Daniel Brown',
        author_email='ddb@star.sr.bham.ac.uk',
        packages=['pykat','pykat.gui','pykat.gui.resources','pykat.testing','pykat.testing.web'],
        url='http://pypi.python.org/pypi/PyKat/',
        license='GPL v2',
        description='Python interface and tools for FINESSE',
        long_description=open('README.rst').read(),
        install_requires=REQUIREMENTS
    )