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