Revision 23151,
411 bytes
checked in by broder, 16 years ago
(diff) |
Update pyhesiodfs to new version using python-hesiod
|
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 | scripts=['pyHesiodFS.py'], |
---|
14 | requires=['PyHesiod (>=0.2.0)'], |
---|
15 | **extra_options) |
---|
Note: See
TracBrowser
for help on using the repository browser.