Revision 149, 411 bytes
(checked in by broder, 16 years ago)
|
hesiod.py in pyHesiodFS? Yeah. It's not around anymore
|
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) |
---|