python-jenkins/setup.py
Antoine Musso c3e23c2973 pass pep8 on all files
pep8 is the python style standard. I have ignored long lines though.
2013-04-13 20:35:11 +02:00

13 lines
326 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(name='python-jenkins',
version='0.3',
description='Python bindings for the remote Jenkins API',
author='Ken Conley',
author_email='kwc@willowgarage.com',
url='http://launchpad.net/python-jenkins',
packages=['jenkins'],
)