~ubuntu-branches/ubuntu/maverick/ubuntu-dev-tools/maverick-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2009-11-28 18:48:35 UTC
  • mfrom: (18.1.66 lucid)
  • Revision ID: james.westby@ubuntu.com-20091128184835-0ot21cscixychr6b
Tags: 0.83debian1
* Merge from Ubuntu Lucid, local Debian changes:
  - Adjust Maintainer and Uploaders.
  - Depend on python-lazr.restfulclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
 
1
#!/usr/bin/python
2
2
 
3
3
from distutils.core import setup
4
4
import glob
12
12
    match = re.compile(".*\((.*)\).*").match(head)
13
13
    if match:
14
14
        version = match.group(1)
15
 
   
 
15
 
16
16
setup(name='ubuntu-dev-tools',
17
17
      version=version,
18
 
      scripts=['404main', 
19
 
               'check-symbols', 
 
18
      scripts=['404main',
 
19
               'buildd',
 
20
               'check-symbols',
 
21
               'dch-repeat',
 
22
               'dgetlp',
20
23
               'get-branches',
 
24
               'get-build-deps',
 
25
               'grab-attachments',
 
26
               'grab-merge',
 
27
               'hugdaylist',
 
28
               'lp-project-upload',
 
29
               'lp-set-dup',
 
30
               'manage-credentials',
 
31
               'massfile',
 
32
               'mk-sbuild-lv',
21
33
               'pbuilder-dist',
22
 
               'update-maintainer', 
23
 
               'dch-repeat',
24
 
               'mk-sbuild-lv',         
 
34
               'pbuilder-dist-simple',
25
35
               'pull-debian-debdiff',
 
36
               'pull-debian-source',
 
37
               'pull-lp-source',
 
38
               'pull-revu-source',
 
39
               'requestsync',
 
40
               'reverse-build-depends',
 
41
               'setup-packaging-environment',
 
42
               'submittodebian',
 
43
               'suspicious-source',
 
44
               'ubuntu-iso',
 
45
               'update-maintainer',
26
46
               'what-patch',
27
 
               'suspicious-source',
28
 
               'ppaput',
29
 
               'requestsync',
30
 
               'hugdaylist',
31
 
               'massfile',
32
 
               'submittodebian'
33
 
               ],
 
47
            ],
 
48
    packages=['ubuntutools',
 
49
              'ubuntutools/lp',
 
50
              'ubuntutools/requestsync',
 
51
             ],
34
52
)
35