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

rcsinfo

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
    )