summaryrefslogtreecommitdiff
path: root/setup.py
blob: 9dc24639dc0ce4604bcc4c4d6e01a81288d074ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
#
# Copyright (C) 2012-2020  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',
               'lorry-controller-remove-old-jobs'],
      packages=['lorrycontroller', 'lorrycontroller.migrations'],
      data_files=[
        ('share/lorry-controller/git-templates', glob.glob('git-templates/*')),
        ('share/lorry-controller/templates', glob.glob('templates/*')),
        ('share/lorry-controller/static', glob.glob('static/*')),
        ],
     )