Skip to content
Snippets Groups Projects
Select Git revision
  • b0aa12d0e4ea3e48803efce6638af3a82f65c329
  • trunk
  • RELEASE_6_5_DRIVEDB
  • RELEASE_6_6_DRIVEDB
  • RELEASE_7_0_DRIVEDB
  • RELEASE_7_2_DRIVEDB
  • RELEASE_7_3_DRIVEDB
  • RELEASE_6_0_DRIVEDB
  • RELEASE_6_1_DRIVEDB
  • RELEASE_6_2_DRIVEDB
  • RELEASE_6_3_DRIVEDB
  • RELEASE_6_4_DRIVEDB
  • tags/RELEASE_7_4
  • tags/RELEASE_7_3
  • RELEASE_5_41_DRIVEDB
  • RELEASE_5_42_DRIVEDB
  • RELEASE_5_43_DRIVEDB
  • tags/RELEASE_7_2
  • tags/RELEASE_7_1
  • tags/RELEASE_7_0
  • RELEASE_5_40_DRIVEDB
21 results

modules

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