summaryrefslogtreecommitdiff
path: root/setup.py
blob: e214c33a7e2ecc2997280fce8e5df9809d7d5ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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/*')),
        ],
     )