File: setup.py

package info (click to toggle)
python-dns 0.cvs%2B20020417-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 168 kB
  • ctags: 301
  • sloc: python: 1,339; makefile: 24; sh: 6
file content (39 lines) | stat: -rw-r--r-- 913 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#! /usr/bin/env python
# 
# $Id: setup.py,v 1.3 2001/11/23 19:43:57 stroeder Exp $
#

import sys,os

sys.path.insert(0,os.getcwd())

from distutils.core import setup

import DNS

setup(
        #-- Package description
        name = 'pydns',
        license = 'Python license',
        version = DNS.__version__,
        description = 'Python DNS library',
        long_description = """Python DNS library:
""",
        author = '', 
        author_email = 'pydns-developer@lists.sourceforge.net',
        url = 'http://pydns.sourceforge.net/',
        packages = ['DNS'],
)

#
# $Log: setup.py,v $
# Revision 1.3  2001/11/23 19:43:57  stroeder
# Prepend current directory to sys.path to enable import of DNS.
#
# Revision 1.2  2001/11/23 19:36:35  stroeder
# Use DNS.__version__ as package version and corrected name
#
# Revision 1.1  2001/08/09 13:42:38  anthonybaxter
# initial setup.py. That was easy. :)
#
#