summaryrefslogtreecommitdiff
path: root/setup.py
blob: e12676e2f3131bbfaf562a583f7f4b3998d8bba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3

from distutils.core import setup

from pyju.version import pyju_version

setup(name='pyjutest',
      version=pyju_version,
      description='junit xml generator',
      author='Manuel Traut',
      author_email='manut@linutronix.de',
      url='http://mecka.net/',
      packages=['pyju'],
      scripts=['pyjutest'],
)