-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
56 lines (53 loc) · 2.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# This file is part of Adblock Plus <https://adblockplus.org/>,
# Copyright (C) 2006-present eyeo GmbH
#
# Adblock Plus is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# Adblock Plus is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
from os import path
from setuptools import setup
with open(path.join(path.dirname(__file__), "README.rst")) as fh:
long_description = fh.read()
setup(
name="python-abp",
version="0.2.0",
description="A library for working with Adblock Plus filter lists.",
long_description=long_description,
long_description_content_type="text/x-rst",
author="eyeo GmbH",
author_email="[email protected]",
url="https://hg.adblockplus.org/python-abp/",
packages=["abp", "abp.filters", "abp.stats"],
entry_points={
"console_scripts": [
"flrender=abp.filters.render_script:main",
"fldiff=abp.filters.diff_script:main",
],
},
include_package_data=True,
license="GPLv3",
zip_safe=False,
keywords="filterlist adblockplus ABP",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)