Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py.in')
-rw-r--r--setup.py.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py.in b/setup.py.in
new file mode 100644
index 0000000..55c5285
--- /dev/null
+++ b/setup.py.in
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# -*- coding: iso-8859-1 -*-
+
+from setuptools import setup
+
+setup(
+ name = 'rainbow',
+ version = '@VERSION@',
+ 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 = [
+ ],
+)