File: setup.py

package info (click to toggle)
pyjunitxml 0.5-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 128 kB
  • ctags: 63
  • sloc: python: 272; makefile: 10
file content (13 lines) | stat: -rwxr-xr-x 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name="junitxml",
      version="0.5",
      description="PyJUnitXML, a pyunit extension to output JUnit compatible XML.",
      maintainer="Robert Collins",
      maintainer_email="robertc@robertcollins.net",
      url="https://launchpad.net/pyjunitxml",
      packages=['junitxml', 'junitxml.tests'],
      license="LGPL-3",
      )