~ahasenack/landscape-client/landscape-client-1.5.5-0ubuntu0.9.04.0

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Rick Clark
  • Date: 2008-09-08 16:35:57 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080908163557-l3ixzj5dxz37wnw2
Tags: 1.0.18-0ubuntu1
New upstream release 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
from distutils.core import setup
 
4
 
 
5
setup(name="Landscape Client",
 
6
      version="AUTOPPA_VERSION(1.0.16-0ubuntu1)"[len("AUTOPPA_VERSION("):-1],
 
7
      description="Landscape Client",
 
8
      author="Landscape Team",
 
9
      author_email="landscape-team@canonical.com",
 
10
      url="http://landscape.canonical.com",
 
11
      packages=["landscape",
 
12
                "landscape.broker",
 
13
                "landscape.manager",
 
14
                "landscape.monitor",
 
15
                "landscape.package",
 
16
                "landscape.sysinfo",
 
17
                "landscape.upgraders",
 
18
                "landscape.user",
 
19
                "landscape.lib"],
 
20
      scripts=["scripts/landscape-client",
 
21
               "scripts/landscape-config",
 
22
               "scripts/landscape-message",
 
23
               "scripts/landscape-broker",
 
24
               "scripts/landscape-manager",
 
25
               "scripts/landscape-monitor",
 
26
               "scripts/landscape-package-changer",
 
27
               "scripts/landscape-package-reporter",
 
28
               "scripts/landscape-sysinfo"],
 
29
     )