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

Delta Between Two Patch Sets: eyeo-depup/eyeo-depup

Issue 29599579: OffTopic: DependencyUpdater
Left Patch Set: Created Nov. 6, 2017, 2:04 p.m.
Right Patch Set: Created Nov. 27, 2017, 9:40 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 #!/usr/bin/env python
2
1 # This file is part of Adblock Plus <https://adblockplus.org/>, 3 # This file is part of Adblock Plus <https://adblockplus.org/>,
2 # Copyright (C) 2006-present eyeo GmbH 4 # Copyright (C) 2006-present eyeo GmbH
3 # 5 #
4 # Adblock Plus is free software: you can redistribute it and/or modify 6 # 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 7 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation. 8 # published by the Free Software Foundation.
7 # 9 #
8 # Adblock Plus is distributed in the hope that it will be useful, 10 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 13 # GNU General Public License for more details.
12 # 14 #
13 # You should have received a copy of the GNU General Public License 15 # You should have received a copy of the GNU General Public License
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
15 17
16 from setuptools import setup 18 """Command line interface for eyeo-depup."""
17 19
20 from __future__ import print_function
18 21
19 setup( 22 from src.depup import DepUpdate
20 name='patchconv', 23
21 version='0.1', 24 if __name__ == '__main__':
22 py_modules=['patchconv'], 25 DepUpdate()()
23 entry_points={
24 'console_scripts': ['patchconv=patchconv:main']
25 }
26 )
LEFTRIGHT

Powered by Google App Engine
This is Rietveld