#!/usr/bin/env python # coding: utf-8 from distutils.core import setup setup(name='nethack-sokoban', version='0.2', description='The nethack sokoban levels', author='Florian Lüke', author_email='florian@schleifi.com', url='http://schleifi.com/svn/florian/nethack-sokoban/', scripts=['nethack-sokoban.py'], packages=['nethack_sokoban'], data_files=[('share/doc/nethack_sokoban', ['README', 'AUTHORS', 'LICENSE'])], )