~david.edmundson/usb-creator/kde-frontend

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Evan Dandrea
  • Date: 2008-09-02 19:03:27 UTC
  • Revision ID: evan.dandrea@canonical.com-20080902190327-6bru0o17r3ht0w4i
Imported project.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from distutils.core import setup
 
2
import os
 
3
 
 
4
#def files():
 
5
#       return ['usbcreator/frontend/%s' % n for n in os.listdir('usbcreator/frontend') if n.endswith('.py')]
 
6
setup(name='usb-creator',
 
7
    version='0.1',
 
8
    description='Ubuntu USB desktop image creator',
 
9
    author='Evan Dandrea',
 
10
    author_email='evand@ubuntu.com',
 
11
    packages=['usbcreator'],
 
12
    scripts=['bin/usb-creator'],
 
13
    #data_files=files(),
 
14
    )
 
15