Skip to content

Commit 24487dd

Browse files
committed
PEP-8
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 02631dd commit 24487dd

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

setup.py

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
vf.write('# Auto-generated file, do not edit!\n')
6969
vf.write('__version__ = \'%s\'\n' % (version, ))
7070

71+
7172
class install(_install):
7273
"""Force install to run build target."""
7374

@@ -174,9 +175,9 @@ def initialize_options(self):
174175
]
175176

176177
extras_require = {
177-
'urwid' : ['urwid'],
178-
'watch' : ['watchdog'],
179-
'jedi' : ['jedi'],
178+
'urwid': ['urwid'],
179+
'watch': ['watchdog'],
180+
'jedi': ['jedi'],
180181
}
181182

182183
packages = [
@@ -220,27 +221,27 @@ def initialize_options(self):
220221

221222
setup(
222223
name="bpython",
223-
version = version,
224-
author = "Bob Farrell, Andreas Stuehrk et al.",
225-
author_email = "robertanthonyfarrell@gmail.com",
226-
description = "Fancy Interface to the Python Interpreter",
227-
license = "MIT/X",
228-
url = "http://www.bpython-interpreter.org/",
229-
long_description = """bpython is a fancy interface to the Python
224+
version=version,
225+
author="Bob Farrell, Andreas Stuehrk et al.",
226+
author_email="robertanthonyfarrell@gmail.com",
227+
description="Fancy Interface to the Python Interpreter",
228+
license="MIT/X",
229+
url="http://www.bpython-interpreter.org/",
230+
long_description="""bpython is a fancy interface to the Python
230231
interpreter for Unix-like operating systems.""",
231-
install_requires = install_requires,
232-
extras_require = extras_require,
233-
tests_require = tests_require,
234-
packages = packages,
235-
data_files = data_files,
236-
package_data = {
232+
install_requires=install_requires,
233+
extras_require=extras_require,
234+
tests_require=tests_require,
235+
packages=packages,
236+
data_files=data_files,
237+
package_data={
237238
'bpython': ['sample-config'],
238239
'bpython.translations': mo_files,
239240
'bpython.test': ['test.config', 'test.theme']
240241
},
241-
entry_points = entry_points,
242-
cmdclass = cmdclass,
243-
test_suite = 'bpython.test'
242+
entry_points=entry_points,
243+
cmdclass=cmdclass,
244+
test_suite='bpython.test'
244245
)
245246

246247
# vim: fileencoding=utf-8 sw=4 ts=4 sts=4 ai et sta

0 commit comments

Comments
 (0)