Last change
on this file since 200 was
171,
checked in by bas, 14 years ago
|
configure. configure.in, Makefile.in:
src/pxeconfigd.in:
- new daemon code, like client side
src/pxeconfigd.py:
- use the common function defined in pxe_global.py
- reformat the code
- added daemon hook script
setup.py:
|
-
Property svn:keywords set to
Id URL
|
File size:
466 bytes
|
Rev | Line | |
---|
[141] | 1 | #!/usr/bin/env python |
---|
| 2 | # |
---|
| 3 | # $Id: setup.py 171 2009-08-19 08:53:16Z bas $ |
---|
| 4 | # |
---|
| 5 | # set ts=4 |
---|
| 6 | # |
---|
| 7 | |
---|
| 8 | import sys |
---|
| 9 | import os |
---|
| 10 | |
---|
| 11 | from distutils.core import setup, Extension |
---|
| 12 | |
---|
| 13 | |
---|
| 14 | setup ( name = 'pxeconfig', |
---|
[171] | 15 | version = '3.1.0', |
---|
[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' }, |
---|
[171] | 24 | py_modules = [ 'pxeconfig', 'pxeconfigd', 'pxe_global', 'AdvancedParser' ], |
---|
[141] | 25 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.