From 2187d21d029ea474221bcfe1d5ae70cf42f262c5 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sun, 14 Aug 2016 13:26:59 +0200 Subject: Make setup.py pep8 compliant --- setup.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/setup.py b/setup.py index 8149b30..4877532 100644 --- a/setup.py +++ b/setup.py @@ -18,22 +18,20 @@ # # END OF COPYRIGHT # -import subprocess -from setuptools import setup, find_packages -import os +from setuptools import setup -setup(name = "foreman_ansible_inventory", - version = "0.0.3", - author = u'Guido Günther', - author_email = 'agx@sigxcpu.org', - description = 'Ansible dynamic inventory that queries the Foreman', - license = 'GPLv3+', - classifiers = [ +setup(name="foreman_ansible_inventory", + version="0.0.3", + author=u'Guido Günther', + author_email='agx@sigxcpu.org', + description='Ansible dynamic inventory that queries the Foreman', + license='GPLv3+', + classifiers=[ 'Environment :: Console', 'Programming Language :: Python :: 2', 'Operating System :: POSIX :: Linux', ], - scripts = ['foreman_ansible_inventory.py'], - requires = ["requests"], + scripts=['foreman_ansible_inventory.py'], + requires=["requests"], tests_require=['responses'], -) + ) -- cgit v1.2.3