From 4fc162b07b2e9d8489e16ed647e5d96f5c66e10a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 20 Jan 2014 14:24:27 +0000 Subject: Add new Lorry Controller --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e214c33 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +# +# Copyright (C) 2012-2014 Codethink Limited + + +from distutils.core import setup +import glob + + +setup(name='lorry-controller', + description='Run Lorry on remote repositories in a controller manner', + author='Codethink Ltd', + author_email='baserock-dev@baserock.org', + url='http://www.baserock.com/', + scripts=['lorry-controller-webapp', 'lorry-controller-minion'], + packages=['lorrycontroller'], + data_files=[ + ('share/lorry-controller/templates', glob.glob('templates/*')), + ('share/lorry-controller/static', glob.glob('static/*')), + ], + ) -- cgit v1.2.1