LEFT | RIGHT |
(no file at all) | |
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-present eyeo GmbH | 2 # Copyright (C) 2006-present 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 |
11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
12 # | 12 # |
13 # You should have received a copy of the GNU General Public License | 13 # 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/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 |
16 from setuptools import setup | 16 """Script run ensure_dependencies.get_deps() externally.""" |
| 17 |
| 18 from __future__ import print_function |
| 19 |
| 20 import json |
| 21 import os |
| 22 import sys |
17 | 23 |
18 | 24 |
19 setup( | 25 def dep_as_json(): |
20 name='patchconv', | 26 """Read configured dependencies via ensure_dependencies.get_deps().""" |
21 version='0.1', | 27 cwd = os.getcwd() |
22 py_modules=['patchconv'], | 28 sys.path.append(cwd) |
23 entry_points={ | 29 import ensure_dependencies |
24 'console_scripts': ['patchconv=patchconv:main'] | 30 return json.dumps(ensure_dependencies.read_deps(cwd), indent=4) |
25 } | 31 |
26 ) | 32 |
| 33 if __name__ == '__main__': |
| 34 print(dep_as_json()) |
LEFT | RIGHT |