Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: setup.py

Issue 30020555: Issue 7317 - Make abp a namespace package (Closed) Base URL: https://hg.adblockplus.org/python-abp
Patch Set: Created Feb. 28, 2019, 6:32 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « abp/__init__.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: setup.py
===================================================================
--- a/setup.py
+++ b/setup.py
@@ -16,17 +16,17 @@
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.1.0',
+ version='0.1.1',
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='info@adblockplus.org',
url='https://hg.adblockplus.org/python-abp/',
packages=['abp', 'abp.filters'],
entry_points={
@@ -42,12 +42,13 @@
'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',
Tudor Avram 2019/03/01 13:01:49 Nit: Shouldn't we also add Python 3.7 to the `tox`
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
« no previous file with comments | « abp/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld