source: fedd/setup.py @ 0c85dce

axis_examplecompt_changesinfo-ops
Last change on this file since 0c85dce was 0c85dce, checked in by Ted Faber <faber@…>, 13 years ago

Bump version

  • Property mode set to 100644
File size: 825 bytes
Line 
1#!/usr/local/bin/python
2
3from distutils.core import setup
4
5setup(name='fedd',
6        version='3.20a',
7        description='DETER Federation daemon',
8        author='Ted Faber',
9        author_email='faber@isi.edu',
10        url='http://fedd.isi.deterlab.net',
11        packages=['federation'],
12        package_data={'federation': [ 'LICENSE' ]},
13        requires=['ZSI(>=2.0)', 'M2Crypto'],
14        provides=['federation'],
15        scripts=['access_to_abac.py', 'cert_to_fedid.py', 'confirm_sshkey.py', 
16            'creddy_split.py', 'dump_abac_authorizer.py', 'exp_access_db.py',
17            'fedd.py', 'fedd_client.py', 'fedd_create.py', 'fedd_ftopo.py',
18            'fedd_image.py', 'fedd_info.py', 'fedd_multiinfo.py',
19            'fedd_multistatus.py', 'fedd_new.py', 'fedd_ns2topdl.py',
20            'fedd_spewlog.py', 'fedd_terminate.py', 'fedd_to_abac.py',
21            'fedid.py', 'fedd_to_abac.py', 'user_to_project.py' ],
22    )
Note: See TracBrowser for help on using the repository browser.