Select Git revision
-
Daniel Brown authored
udpdating setup files and requirements. Fixing and simplifying the output select from a kat_run object. Internally it always stores output data as a 2d array, even if noxaxis is used. This simplifies the selection of output data greatly
Daniel Brown authoredudpdating setup files and requirements. Fixing and simplifying the output select from a kat_run object. Internally it always stores output data as a 2d array, even if noxaxis is used. This simplifies the selection of output data greatly
setup.py 700 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','pykat.utilities','pykat.utilities.optics'],
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
)