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

Unified Diff: setup.py

Issue 29465715: Fixes 4969 - Add parsing of filters (Closed)
Patch Set: Created June 14, 2017, 5: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
Index: setup.py
===================================================================
--- a/setup.py
+++ b/setup.py
@@ -38,17 +38,17 @@
def run(self):
subprocess.check_call(['virtualenv', '-p', self.python, DEVENV])
subprocess.check_call([PIP, 'install'] + DEV_DEPENDENCIES)
subprocess.check_call([PIP, 'install', '-e', '.'])
setup(
name='python-abp',
- version='0.0.1',
+ version='0.0.2',
mathias 2017/07/26 20:37:15 I wonder how the patch-version upgrade is already
Vasily Kuznetsov 2017/07/27 12:20:58 Good point. Actually, this version is not even rig
description='ABP python tools',
long_description='A library for working with Adblock Plus filter lists.',
author='Eyeo GmbH',
author_email='info@adblockplus.org',
url='https://hg.adblockplus.org/python-abp/',
packages=['abp', 'abp.filters'],
cmdclass={'devenv': DevEnvCommand},
entry_points={

Powered by Google App Engine
This is Rietveld