LEFT | RIGHT |
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 27 matching lines...) Expand all Loading... |
38 def run(self): | 38 def run(self): |
39 subprocess.check_call(['virtualenv', '-p', self.python, DEVENV]) | 39 subprocess.check_call(['virtualenv', '-p', self.python, DEVENV]) |
40 subprocess.check_call([PIP, 'install'] + DEV_DEPENDENCIES) | 40 subprocess.check_call([PIP, 'install'] + DEV_DEPENDENCIES) |
41 subprocess.check_call([PIP, 'install', '-e', '.']) | 41 subprocess.check_call([PIP, 'install', '-e', '.']) |
42 | 42 |
43 | 43 |
44 setup( | 44 setup( |
45 name='python-abp', | 45 name='python-abp', |
46 version='0.0.1', | 46 version='0.0.1', |
47 description='ABP python tools', | 47 description='ABP python tools', |
48 long_description="A library for working with Adblock Plus filterlists.", | 48 long_description="A library for working with Adblock Plus filter lists.", |
49 author='Vasily Kuznetsov', | 49 author='Vasily Kuznetsov', |
50 author_email='vasily@adblockplus.org', | 50 author_email='vasily@adblockplus.org', |
51 url='https://hg.adblockplus.org/python-abp/', | 51 url='https://hg.adblockplus.org/python-abp/', |
52 packages=['abp', 'abp.filters'], | 52 packages=['abp', 'abp.filters'], |
53 cmdclass={'devenv': devenv}, | 53 cmdclass={'devenv': devenv}, |
54 include_package_data=True, | 54 include_package_data=True, |
55 license='GPLv3', | 55 license='GPLv3', |
56 zip_safe=False, | 56 zip_safe=False, |
57 keywords='filterlist adblockplus ABP', | 57 keywords='filterlist adblockplus ABP', |
58 classifiers=[ | 58 classifiers=[ |
59 'Development Status :: 2 - Pre-Alpha', | 59 'Development Status :: 2 - Pre-Alpha', |
60 'Intended Audience :: Developers', | 60 'Intended Audience :: Developers', |
61 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | 61 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', |
62 'Natural Language :: English', | 62 'Natural Language :: English', |
63 'Programming Language :: Python :: 2', | 63 'Programming Language :: Python :: 2', |
64 'Programming Language :: Python :: 2.7', | 64 'Programming Language :: Python :: 2.7', |
65 'Programming Language :: Python :: 3', | 65 'Programming Language :: Python :: 3', |
66 'Programming Language :: Python :: 3.5', | 66 'Programming Language :: Python :: 3.5', |
67 ] | 67 ] |
68 ) | 68 ) |
LEFT | RIGHT |