Skip to content
Snippets Groups Projects
Select Git revision
  • 48cbf2cf184a1ac29931f2370f494b22832556c3
  • master default
2 results

setup.py

Blame
  • Forked from finesse / pykat
    808 commits behind the upstream repository.
    Daniel Brown's avatar
    Daniel Brown authored
    watcher thread now start the test thread when ready, stops the watcher trying to join the test thread before it is ready
    48cbf2cf
    History
    setup.py 604 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.3',
        author='Daniel Brown',
        author_email='ddb@star.sr.bham.ac.uk',
        packages=['pykat','pykat.gui','pykat.gui.resources'],
        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
    )