source: trunk/debathena/debathena/pyhesiodfs/setup.py @ 23151

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