Skip to content

Commit 1ffc0ad

Browse files
committed
setup.py: fix indention to please pep8
1 parent eab9a3c commit 1ffc0ad

File tree

1 file changed

+16
-20
lines changed

1 file changed

+16
-20
lines changed

setup.py

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,28 @@
33

44
import os
55

6-
#from distutils.core import setup
6+
# from distutils.core import setup
77
from setuptools import setup
88

9-
#borrowed from Pylons project
9+
# borrowed from Pylons project
1010
here = os.path.abspath(os.path.dirname(__file__))
1111
try:
1212
README = open(os.path.join(here, 'README.rst')).read()
1313
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
1414
except IOError:
1515
README = CHANGES = ''
1616

17-
setup(name = 'oca',
18-
version=__version__,
19-
description='Python Bindings for XMLRPC OpenNebula Cloud API',
20-
long_description=README + '\n\n' + CHANGES,
21-
test_suite = 'nose.collector',
22-
classifiers=[
23-
'Development Status :: 3 - Alpha',
24-
'License :: OSI Approved :: Apache Software License',
25-
'License :: OSI Approved :: Apache Software License',
26-
'Operating System :: OS Independent',
27-
],
28-
keywords='opennebula cloud xmlrpc',
29-
author=u'Łukasz Oleś, Matthias Schmitz, Michael Schmidt',
30-
url='https://github.com/python-oca/python-oca',
31-
license='Apache License 2.0',
32-
packages=['oca'],
33-
)
34-
17+
setup(name='oca',
18+
version=__version__,
19+
description='Python Bindings for XMLRPC OpenNebula Cloud API',
20+
long_description=README + '\n\n' + CHANGES,
21+
test_suite='nose.collector',
22+
classifiers=['Development Status :: 3 - Alpha',
23+
'License :: OSI Approved :: Apache Software License',
24+
'License :: OSI Approved :: Apache Software License',
25+
'Operating System :: OS Independent'],
26+
keywords='opennebula cloud xmlrpc',
27+
author=u'Łukasz Oleś, Matthias Schmitz, Michael Schmidt',
28+
url='https://github.com/python-oca/python-oca',
29+
license='Apache License 2.0',
30+
packages=['oca'])

0 commit comments

Comments
 (0)