OLD | NEW |
| 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 ) | |
OLD | NEW |