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

Delta Between Two Patch Sets: setup.py

Issue 29338156: Issue 3754 - Initial setup of the python-abp repo. (Closed)
Left Patch Set: Move style and coverage checking to tox.ini, strip setup.py to only have 'devenv' command, remove n… Created March 15, 2016, 6:35 p.m.
Right Patch Set: Remove pytest from qa dependencies in tox.ini, change "filterlist" to "filter list" Created March 17, 2016, 2:39 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « abp/filters/__init__.py ('k') | tests/test_line_parsing.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
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 )
LEFTRIGHT

Powered by Google App Engine
This is Rietveld