source: trunk/setup.py @ 158

Last change on this file since 158 was 158, checked in by bas, 15 years ago

-V/--version did not print version number

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