#!/usr/bin/env python from distutils.core import setup setup( name = "annoamp", version = "0.1", description = "An annodex file player.", long_description = "Plays annodex files which provides similar functionality to DVD chapters. It also resumes files.", author = "Scott Shawcroft and Jason Kivlighn", author_email = "scott.shawcroft@gmail.com and jkivlighn@gmail.com", url="http://www.annodex.net/taxonomy/term/22", py_modules = ['anxplayer', 'm3uhandler'], scripts = ['annoamp.py'], data_files = [('share/annoamp', ['annoamp.png', 'annoamp.glade']), ('doc/annoamp-0.1', ['README']) ], license = "GNU General Public License Version 2" )