root/trunk/source/pyhesiodfs/setup.py

Revision 144, 440 bytes (checked in by broder, 16 years ago)

Use PyHesiod instead of Python DNS based wrapper

Line 
1 from distutils.core import setup
2 import sys
3
4 extra_options = {}
5
6 if sys.platform == 'darwin':
7     extra_options['data_files'] = [('/Library/LaunchDaemons', ('edu.mit.sipb.mit-automounter.plist',))]
8
9 setup(name='pyHesiodFS',
10       version='1.0',
11       author='Quentin Smith',
12       author_email='pyhesiodfs@mit.edu',
13       py_modules=['hesiod'],
14       scripts=['pyHesiodFS.py'],
15       requires=['PyHesiod (>=0.2.0)'],
16       **extra_options)
Note: See TracBrowser for help on using the browser.