source: trunk/setup.py @ 210

Last change on this file since 210 was 206, checked in by bas, 11 years ago

added a new option to skip hostname lookup failures

  • Property svn:keywords set to Id URL
File size: 489 bytes
Line 
1#!/usr/bin/env python
2#
3# $Id: setup.py 206 2012-12-18 11:53:42Z bas $
4#
5# set ts=4
6#
7
8import sys
9import os
10
11from distutils.core import setup, Extension
12
13
14setup ( name = 'pxeconfig',
15    version = '4.2.0',
16    description = 'SARA pxeconfig utilities',
17    author = 'Bas van der Vlies',
18    author_email = 'pxeconfig@sara.nl',
19    url = 'https://oss.trac.sara.nl/oss/pxeconfig',
20
21
22    extra_path = 'pxeconfig',
23    package_dir = { '' : 'src' }, 
24    py_modules = [ 'pxeconfig', 'pxeconfigd', 'pxe_global', 'AdvancedParser' ], 
25)
Note: See TracBrowser for help on using the repository browser.