root/branches/0.3/setup.py.in

Revision 495, 0.5 kB (checked in by nicfit, 2 years ago)

XSPF is good to go, and a bunch of other cleanup

Line 
1 from distutils.core import setup
2
3 setup(
4   name='@PACKAGE_NAME@',
5   version='@PACKAGE_VERSION@',
6   description='Gtk+ audio player',
7   author='Travis Shirk',
8   author_email='travis@pobox.com',
9   url='http://mesk.nicfit.net/',
10   packages=['mesk',
11             'mesk.plugin',
12             'mesk.audio',
13             'mesk.playlist',
14            ],
15   package_dir={'mesk': 'src/mesk',
16                'mesk.plugin': 'src/mesk/plugin',
17                'mesk.audio': 'src/mesk/audio',
18                'mesk.playlist': 'src/mesk/playlist',
19               }
20 )
Note: See TracBrowser for help on using the browser.