Merge lp:~mvo/mago/add-setup-py into lp:mago

Proposed by Michael Vogt
Status: Merged
Merged at revision: 23
Proposed branch: lp:~mvo/mago/add-setup-py
Merge into: lp:mago
Diff against target: 22 lines (+18/-0)
1 file modified
setup.py (+18/-0)
To merge this branch: bzr merge lp:~mvo/mago/add-setup-py
Reviewer Review Type Date Requested Status
Jean-Baptiste Lallement Approve
Review via email: mp+47504@code.launchpad.net

Description of the change

Adds a minimal setup.py so that lp:~mvo/mago/packages will be able to build a deb from trunk.

To post a comment you must log in.
Revision history for this message
Nagappan Alagappan (nagappan) wrote :

Nice work !

Revision history for this message
Jean-Baptiste Lallement (jibel) wrote :

approved

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'setup.py'
2--- setup.py 1970-01-01 00:00:00 +0000
3+++ setup.py 2011-01-26 09:06:14 +0000
4@@ -0,0 +1,18 @@
5+#!/usr/bin/env python
6+
7+import distutils
8+
9+from distutils.core import setup
10+
11+VERSION="0.4"
12+setup(name="mago", version=VERSION,
13+ scripts=["bin/mago",
14+ "bin/magomatic",
15+ ],
16+ packages = ['mago',
17+ 'mago.mouse',
18+ 'mago.noseplugins',
19+ 'mago.unity',
20+ 'mago.xlib',
21+ ],
22+ )

Subscribers

People subscribed via source and target branches