~bzr/ubuntu/lucid/hitchhiker/packaging

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Pool
  • Date: 2009-11-12 02:53:32 UTC
  • Revision ID: mbp@sourcefrog.net-20091112025332-nste9lbdhbrba8gf
Add basic setup.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
 
3
# Copyright (C) 2009 Canonical Ltd
 
4
 
 
5
"""Installation script for hitchhiker.
 
6
"""
 
7
 
 
8
 
 
9
from distutils.core import setup
 
10
 
 
11
 
 
12
# Meta information for setup
 
13
# see http://docs.python.org/dist/meta-data.html
 
14
META_INFO = dict(
 
15
    name='hitchhhiker',
 
16
    version='0',
 
17
    author='Aaron Bentley',
 
18
    license='GNU GPL v2 or later',
 
19
    download_url='https://launchpad.net/hitchhiker/+download',
 
20
    description='bzr-based remote file access client',
 
21
    scripts=['hitchhiker'],
 
22
    )
 
23
 
 
24
 
 
25
setup(**META_INFO)