Skip to content
Snippets Groups Projects
Select Git revision
  • e849f2dd94c43fa1e50e39985ee33bd29025067d
  • 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

fully_coherent_search_using_MCMC_on_glitching_data.md

Blame
  • setup.py 640 B
    # -*- coding: utf-8 -*-
    """
    Created on Sun Jan 27 09:43:16 2013
    
    @author: Daniel
    """
    
    from distutils.core import setup
    
    REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
    
    setup(
        name='PyKat',
        version='0.0.5',
        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='LICENSE.txt',
        description='Python interface and tools for FINESSE',
        long_description=open('README.txt').read(),
        install_requires=REQUIREMENTS
    )