summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 44f74a8ab81fdb4411ebe279ee2dfcc141040719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from distutils.core import setup
from version import *

setup(name='hostinfo-tools',
      version=get_git_version(),
      description='Hostinfo database interface scripts',
      author='Alexander Sulfrian',
      author_email='alex@spline.inf.fu-berlin.de',
      url='http://git.spline.inf.fu-berlin.de/hostinfo-tools/',
      packages=['hostinfo'],
      scripts=['bin/hostinfo'],
     )