|
68 | 68 | vf.write('# Auto-generated file, do not edit!\n')
|
69 | 69 | vf.write('__version__ = \'%s\'\n' % (version, ))
|
70 | 70 |
|
| 71 | + |
71 | 72 | class install(_install):
|
72 | 73 | """Force install to run build target."""
|
73 | 74 |
|
@@ -174,9 +175,9 @@ def initialize_options(self):
|
174 | 175 | ]
|
175 | 176 |
|
176 | 177 | extras_require = {
|
177 |
| - 'urwid' : ['urwid'], |
178 |
| - 'watch' : ['watchdog'], |
179 |
| - 'jedi' : ['jedi'], |
| 178 | + 'urwid': ['urwid'], |
| 179 | + 'watch': ['watchdog'], |
| 180 | + 'jedi': ['jedi'], |
180 | 181 | }
|
181 | 182 |
|
182 | 183 | packages = [
|
@@ -220,27 +221,27 @@ def initialize_options(self):
|
220 | 221 |
|
221 | 222 | setup(
|
222 | 223 | 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 |
230 | 231 | 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={ |
237 | 238 | 'bpython': ['sample-config'],
|
238 | 239 | 'bpython.translations': mo_files,
|
239 | 240 | 'bpython.test': ['test.config', 'test.theme']
|
240 | 241 | },
|
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' |
244 | 245 | )
|
245 | 246 |
|
246 | 247 | # vim: fileencoding=utf-8 sw=4 ts=4 sts=4 ai et sta
|
0 commit comments