Merge pull request #7 from rogersachan/patch-1
[portablelinux.git] / setup.py
blobf4398a6e1854cd07654dec3d007347cbce7e0fc5
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 from distutils.core import setup
6 setup(
7 name = 'portablelinux',
8 version = '0.9.3',
9 description = 'A bootable USB Live Linux creator',
10 long_description = """Portable Linux is a tool that lets you create bootable USB and removable drives using popular Live CDs based on Casper.""",
11 author = 'Manuel Amador (Rudd-O)',
12 author_email = 'rudd-o@rudd-o.com',
13 license = "GPL",
14 url = 'http://rudd-o.com/new-projects/portablelinux',
15 data_files = [
16 ('share/portablelinux', [
17 'portablelinux.glade',
18 'portablelinux.png'
19 ]),
20 ('share/pixmaps', ['portablelinux.png']),
21 ('share/applications', ['portablelinux.desktop']),
23 scripts = ["portablelinux"],
24 keywords = "usb removable linux live cd installer",