#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'rainbow', version = '0.8.6', packages = ['rainbow', 'rainbow/permissions', ], package_data = {'rainbow': ['conf/*']}, author = "Noah Kantrowitz, Michael Stone", author_email = "noah@laptop.org, michael@laptop.org", description = "The daemon part of the OLPC Bitfrost security system.", license = "MIT", keywords = "olpc bitfrost", url = "http://wiki.laptop.org/go/Rainbow", classifiers = [ ], install_requires = [ ], )