Skip to content

Commit 91a0433

Browse files
committed
more conventional python dictionary alignment
1 parent 10da40c commit 91a0433

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

setup.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,27 @@
3333
ecodes_c = Extension('evdev._ecodes', sources=['evdev/ecodes.c'], extra_compile_args=cflags)
3434

3535
kw = {
36-
'name' : 'evdev',
37-
'version' : '0.4.4',
36+
'name': 'evdev',
37+
'version': '0.4.4',
3838

39-
'description' : 'Bindings for the linux input handling subsystem',
40-
'long_description' : open(pjoin(here, 'README.rst')).read(),
39+
'description': 'Bindings for the linux input handling subsystem',
40+
'long_description': open(pjoin(here, 'README.rst')).read(),
4141

42-
'author' : 'Georgi Valkov',
43-
'author_email' : 'georgi.t.valkov@gmail.com',
44-
'license' : 'Revised BSD License',
42+
'author': 'Georgi Valkov',
43+
'author_email': 'georgi.t.valkov@gmail.com',
44+
'license': 'Revised BSD License',
4545

46-
'keywords' : 'evdev input uinput',
47-
'classifiers' : classifiers,
48-
'url' : 'https://github.com/gvalkov/python-evdev',
46+
'keywords': 'evdev input uinput',
47+
'classifiers': classifiers,
48+
'url': 'https://github.com/gvalkov/python-evdev',
4949

50-
'packages' : ['evdev'],
51-
'ext_modules' : [input_c, uinput_c, ecodes_c],
52-
'tests_require' : ['pytest'],
50+
'packages': ['evdev'],
51+
'ext_modules': [input_c, uinput_c, ecodes_c],
52+
'tests_require': ['pytest'],
5353

54-
'include_package_data' : False,
55-
'zip_safe' : True,
56-
'cmdclass' : {},
54+
'include_package_data': False,
55+
'zip_safe': True,
56+
'cmdclass': {},
5757
}
5858

5959

0 commit comments

Comments
 (0)