Select Git revision
Forked from
finesse / pykat
808 commits behind the upstream repository.

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
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
)