source: fedd/setup.py @ 0e41546

axis_examplecompt_changesinfo-opsversion-1.30version-2.00version-3.01version-3.02
Last change on this file since 0e41546 was 0e41546, checked in by Ted Faber <faber@…>, 15 years ago

Packaging tools

  • Property mode set to 100644
File size: 477 bytes
Line 
1#!/usr/local/bin/python
2
3try:
4    from setuptools import setup
5except ImportError:
6    from distutils.core import setup
7
8setup(name='fedd',
9        version='1.0',
10        description='DETER Federation daemon',
11        author='Ted Faber',
12        author_email='faber@isi.edu',
13        url='http://fedd.isi.deterlab.net',
14        packages=['fedd'],
15        requires=['ZSI(>=2.0)', 'M2Crypto'],
16        provides=['fedd'],
17        scripts=['fedd.py', 'fedd_client.py', 'confirm_sshkey.py', 
18            'exp_access_db.py', 'fixed_resource.py'],
19    )
Note: See TracBrowser for help on using the repository browser.