Merge lp:~nataliabidart/ubuntuone-windows-installer/setup-is-needed into lp:ubuntuone-windows-installer

Proposed by Natalia Bidart
Status: Merged
Approved by: dobey
Approved revision: 111
Merged at revision: 110
Proposed branch: lp:~nataliabidart/ubuntuone-windows-installer/setup-is-needed
Merge into: lp:ubuntuone-windows-installer
Diff against target: 41 lines (+37/-0)
1 file modified
setup.py (+37/-0)
To merge this branch: bzr merge lp:~nataliabidart/ubuntuone-windows-installer/setup-is-needed
Reviewer Review Type Date Requested Status
dobey (community) Approve
Review via email: mp+100605@code.launchpad.net

Commit message

- Adding missing setup.py.

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

If this is in trunk, shouldn't the version be 3.1?

review: Needs Fixing
111. By Natalia Bidart

Restoring trunk's version.

Revision history for this message
dobey (dobey) :
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 2012-04-03 14:00:29 +0000
4@@ -0,0 +1,37 @@
5+#!/usr/bin/env python
6+#
7+# Copyright 2010-2012 Canonical Ltd.
8+#
9+# This program is free software: you can redistribute it and/or modify it
10+# under the terms of the GNU General Public License version 3, as published
11+# by the Free Software Foundation.
12+#
13+# This program is distributed in the hope that it will be useful, but
14+# WITHOUT ANY WARRANTY; without even the implied warranties of
15+# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16+# PURPOSE. See the GNU General Public License for more details.
17+#
18+# You should have received a copy of the GNU General Public License along
19+# with this program. If not, see <http://www.gnu.org/licenses/>.
20+
21+"""Setup.py: build, distribute, clean."""
22+
23+try:
24+ import DistUtilsExtra.auto
25+except ImportError:
26+ print >> sys.stderr, 'To build this program you need '\
27+ 'https://launchpad.net/python-distutils-extra'
28+ sys.exit(1)
29+assert DistUtilsExtra.auto.__version__ >= '2.18', \
30+ 'needs DistUtilsExtra.auto >= 2.18'
31+
32+DistUtilsExtra.auto.setup(
33+ name='ubuntuone-windows-installer',
34+ version='3.1',
35+ license='GPL v3',
36+ author='Roberto Alsina',
37+ author_email='roberto.alsina@canonical.com',
38+ description='Ubuntu One Windows Installer',
39+ long_description='Scripts to build the Ubuntu One windows installer.',
40+ url='https://launchpad.net/ubuntuone-windows-installer',
41+)

Subscribers

People subscribed via source and target branches