~ubuntu-branches/ubuntu/gutsy/python-dns/gutsy-security

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Wendland
  • Date: 2003-08-20 14:25:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030820142529-3facqpkoslard81q
Tags: 2.3.0-5
* debian/control:
  Use ${python:Depends} for Depends, so that correct Depends are
  generated by dh_python. (closes: Bug#205884)
* debian/python-dns.postinst
  debian/python-dns.prerm:
  Remove these files and let debhelper handle these issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
2
3
 
# $Id: setup.py,v 1.3 2001/11/23 19:43:57 stroeder Exp $
 
3
# $Id: setup.py,v 1.4 2002/05/06 06:32:07 anthonybaxter Exp $
4
4
#
5
5
 
6
6
import sys,os
19
19
        description = 'Python DNS library',
20
20
        long_description = """Python DNS library:
21
21
""",
22
 
        author = '', 
 
22
        author = 'Anthony Baxter and others', 
23
23
        author_email = 'pydns-developer@lists.sourceforge.net',
24
24
        url = 'http://pydns.sourceforge.net/',
25
25
        packages = ['DNS'],
27
27
 
28
28
#
29
29
# $Log: setup.py,v $
 
30
# Revision 1.4  2002/05/06 06:32:07  anthonybaxter
 
31
# filled in a blank
 
32
#
30
33
# Revision 1.3  2001/11/23 19:43:57  stroeder
31
34
# Prepend current directory to sys.path to enable import of DNS.
32
35
#