2 # -*- coding: utf-8 -*-
5 if sys.version_info < ( 2 , 4 ) :
6 print 'WARNING: py-rsbac needs at least Python 2.4'
8 from distutils.core import setup
10 setup( name = 'py-rsbac' ,
12 description = 'RSBAC Python bindings' ,
13 long_description = '''
14 The rsbac package is a full interface to the RSBAC Linux security
15 system, including support to manage the various models it
16 provides. Its goal is to be easy to use, high-level,
17 "object-oriented", complete and with acceptable performance. It allows
18 to easily administrate the RSBAC configuration with the power of
20 packages = [ 'rsbac' ] ,
21 url = 'http://projects.tuxee.net/py-rsbac/' ,
22 download_url = 'http://projects.tuxee.net/py-rsbac/py-rsbac-unstable-latest.tar.gz' ,
24 author = 'Frédéric Jolliton' ,
25 author_email = 'pyrsbac@tuxee.net' )