Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: c71fdd3b4c54c7ceb83d16215f05dbfc8063a5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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 = [
    ],
)