File: setup.py

package info (click to toggle)
pyjunitxml 0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 224 kB
  • sloc: python: 830; makefile: 7
file content (14 lines) | stat: -rwxr-xr-x 427 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from distutils.core import setup

setup(name="junitxml",
      version="0.7",
      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'],
      scripts=['pyjunitxml'],
      license="LGPL-3",
      )