Merge lp://staging/~statik/lptools/bug-500399 into lp://staging/~dobey/lptools/trunk

Proposed by Elliot Murphy
Status: Merged
Approved by: dobey
Approved revision: not available
Merged at revision: not available
Proposed branch: lp://staging/~statik/lptools/bug-500399
Merge into: lp://staging/~dobey/lptools/trunk
Diff against target: 39 lines (+21/-0)
3 files modified
.bzrignore (+2/-0)
MANIFEST.in (+2/-0)
setup.py (+17/-0)
To merge this branch: bzr merge lp://staging/~statik/lptools/bug-500399
Reviewer Review Type Date Requested Status
dobey Approve
Review via email: mp+18359@code.staging.launchpad.net

Commit message

Move some files around, add lp- prefix to command names, added a manifest and a setup.py in preparation for being able to make a release tarball.

To post a comment you must log in.
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 '.bzrignore'
2--- .bzrignore 1970-01-01 00:00:00 +0000
3+++ .bzrignore 2010-02-01 05:35:18 +0000
4@@ -0,0 +1,2 @@
5+dist
6+MANIFEST
7
8=== added file 'MANIFEST.in'
9--- MANIFEST.in 1970-01-01 00:00:00 +0000
10+++ MANIFEST.in 2010-02-01 05:35:18 +0000
11@@ -0,0 +1,2 @@
12+include COPYING
13+include MANIFEST.in MANIFEST
14
15=== added directory 'bin'
16=== renamed file 'milestone2ical' => 'bin/lp-milestone2ical'
17=== renamed file 'review-list' => 'bin/lp-review-list'
18=== renamed file 'review-notifier' => 'bin/lp-review-notifier'
19=== added file 'setup.py'
20--- setup.py 1970-01-01 00:00:00 +0000
21+++ setup.py 2010-02-01 05:35:18 +0000
22@@ -0,0 +1,17 @@
23+#!/usr/bin/python
24+
25+from glob import glob
26+from distutils.core import setup
27+
28+setup(
29+ name='lptools',
30+ version='0.1',
31+ url='https://launchpad.net/lptools',
32+ author='Rodney Dawes',
33+ author_email='rodney.dawes@canonical.com',
34+ license='GPLv3',
35+ description='A collection of tools for developers who use launchpad',
36+ py_modules=[],
37+ scripts=glob('bin/*'),
38+ )
39+

Subscribers

People subscribed via source and target branches

to all changes: