summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..b27b9d5
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+#
+# Copyright (C) 2012 Codethink Limited
+
+
+from distutils.core import setup
+
+
+setup(name='lorry-controller',
+ description='FIXME',
+ long_description='''\
+FIXME
+''',
+ author='Daniel Silverstone',
+ author_email='daniel.silverstne@codethink.co.uk',
+ url='http://www.baserock.com/',
+ scripts=['lorry-controller'],
+ packages=['lorrycontroller'],
+ )