Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: flake8-abp/setup.py

Issue 29371619: Noissue - Fix E305 by adapting flake8-abp to use groups, run tests on Python 3.6 (Closed)
Patch Set: Created Jan. 12, 2017, 3:22 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 # This file is part of Adblock Plus <https://adblockplus.org/>, 1 # This file is part of Adblock Plus <https://adblockplus.org/>,
2 # Copyright (C) 2006-2016 Eyeo GmbH 2 # Copyright (C) 2006-2016 Eyeo GmbH
3 # 3 #
4 # Adblock Plus is free software: you can redistribute it and/or modify 4 # Adblock Plus is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License version 3 as 5 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation. 6 # published by the Free Software Foundation.
7 # 7 #
8 # Adblock Plus is distributed in the hope that it will be useful, 8 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 if failed: 113 if failed:
114 sys.exit(1) 114 sys.exit(1)
115 115
116 116
117 setup( 117 setup(
118 name='flake8-abp', 118 name='flake8-abp',
119 version='0.1', 119 version='0.1',
120 py_modules=['flake8_abp'], 120 py_modules=['flake8_abp'],
121 entry_points={ 121 entry_points={
122 'flake8.extension': [ 122 'flake8.extension': [
123 'A = flake8_abp:ASTChecker', 123 'abp.A = flake8_abp:ASTChecker',
124 'A1 = flake8_abp:check_quotes', 124 'abp.A1 = flake8_abp:check_quotes',
125 'A111 = flake8_abp:check_redundant_parenthesis', 125 'abp.A111 = flake8_abp:check_redundant_parenthesis',
126 'A303 = flake8_abp:check_non_default_encoding', 126 'abp.A303 = flake8_abp:check_non_default_encoding',
127 ], 127 ],
128 }, 128 },
129 cmdclass={'test': TestCommand} 129 cmdclass={'test': TestCommand}
130 ) 130 )
OLDNEW

Powered by Google App Engine
This is Rietveld