File: setup.py

package info (click to toggle)
munin 2.0.76-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,064 kB
  • sloc: perl: 11,684; java: 1,924; sh: 1,632; makefile: 636; javascript: 365; python: 267
file content (21 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

from distutils.core import setup
from subprocess import Popen, PIPE


# Get the current revision from SVN
try:
    p = Popen(['svnversion'], stdout=PIPE)
    version = p.stdout.read().strip()
except OSError:
    version = "unknown"


setup(name="python-munin",
      version=version,
      url="http://dev.sbhr.dk/svn/python-munin",
      author="Morten Siebuhr",
      author_email="sbhr@sbhr.dk",
      description="",
      py_modules=['munin'])