OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 |
| 3 # This file is part of Adblock Plus <https://adblockplus.org/>, |
| 4 # Copyright (C) 2006-2016 Eyeo GmbH |
| 5 # |
| 6 # Adblock Plus is free software: you can redistribute it and/or modify |
| 7 # it under the terms of the GNU General Public License version 3 as |
| 8 # published by the Free Software Foundation. |
| 9 # |
| 10 # Adblock Plus is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. |
| 14 # |
| 15 # You should have received a copy of the GNU General Public License |
| 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 |
| 18 """A library for working with Adblock Plus filterlists.""" |
| 19 |
| 20 from setuptools import setup |
| 21 |
| 22 |
| 23 setup( |
| 24 name='python-abp', |
| 25 version='0.0.1', |
| 26 description='ABP python tools', |
| 27 long_description=__doc__, |
| 28 author='Vasily Kuznetsov', |
| 29 author_email='vasily@adblockplus.org', |
| 30 url='https://hg.adblockplus.org/python-abp/', |
| 31 packages=['abp', 'abp.filters'], |
| 32 include_package_data=True, |
| 33 license='GPLv3', |
| 34 zip_safe=False, |
| 35 keywords='filterlist adblockplus ABP', |
| 36 classifiers=[ |
| 37 'Development Status :: 2 - Pre-Alpha', |
| 38 'Intended Audience :: Developers', |
| 39 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', |
| 40 'Natural Language :: English', |
| 41 'Programming Language :: Python :: 2', |
| 42 'Programming Language :: Python :: 2.7', |
| 43 'Programming Language :: Python :: 3', |
| 44 'Programming Language :: Python :: 3.3', |
| 45 'Programming Language :: Python :: 3.4', |
| 46 'Programming Language :: Python :: 3.5', |
| 47 ] |
| 48 ) |
OLD | NEW |