mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
* master: not gonna bother figuring out why pypy regex is not matching https://travis-ci.org/internetarchive/warcprox/jobs/299864258#L615 fix failing test just committed, which involves running "listeners" for all urls, including those not archived; make adjustments accordingly make test_crawl_log expect HEAD request to be logged fix crawl log handling of WARCPROX_WRITE_RECORD request modify test_crawl_log to expect crawl log to honor --base32 setting and add tests of WARCPROX_WRITE_RECORD request and HEAD request (not written to warc) bump dev version number add --crawl-log-dir option to fix failing test create crawl log dir at startup if it doesn't exist make test pass with py27 fix crawl log test to avoid any dedup collisions fix crawl log test heritrix-style crawl log support disallow slash and backslash in warc-prefix can't see any reason to split the main() like this (anymore?) add missing dependency warcio to tests_require
89 lines
2.9 KiB
Python
Executable File
89 lines
2.9 KiB
Python
Executable File
#!/usr/bin/env python
|
|
'''
|
|
setup.py - setuptools installation configuration for warcprox
|
|
|
|
Copyright (C) 2013-2017 Internet Archive
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
USA.
|
|
'''
|
|
|
|
import sys
|
|
import setuptools
|
|
import setuptools.command.test
|
|
|
|
class PyTest(setuptools.command.test.test):
|
|
def finalize_options(self):
|
|
setuptools.command.test.test.finalize_options(self)
|
|
self.test_args = []
|
|
self.test_suite = True
|
|
def run_tests(self):
|
|
# import here, because outside the eggs aren't loaded
|
|
import pytest
|
|
errno = pytest.main(self.test_args)
|
|
sys.exit(errno)
|
|
|
|
deps = [
|
|
'certauth==1.1.6',
|
|
'warctools',
|
|
'urlcanon>=0.1.dev16',
|
|
'doublethink>=0.2.0.dev87',
|
|
'urllib3',
|
|
'requests>=2.0.1',
|
|
'PySocks',
|
|
'cryptography!=2.1.1', # 2.1.1 installation is failing on ubuntu
|
|
]
|
|
try:
|
|
import concurrent.futures
|
|
except:
|
|
deps.append('futures')
|
|
|
|
setuptools.setup(
|
|
name='warcprox',
|
|
version='2.2.1b2.dev112',
|
|
description='WARC writing MITM HTTP/S proxy',
|
|
url='https://github.com/internetarchive/warcprox',
|
|
author='Noah Levitt',
|
|
author_email='nlevitt@archive.org',
|
|
long_description=open('README.rst').read(),
|
|
license='GPL',
|
|
packages=['warcprox'],
|
|
install_requires=deps,
|
|
tests_require=['mock', 'pytest', 'warcio'],
|
|
cmdclass = {'test': PyTest},
|
|
test_suite='warcprox.tests',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'warcprox=warcprox.main:main',
|
|
('warcprox-ensure-rethinkdb-tables='
|
|
'warcprox.main:ensure_rethinkdb_tables'),
|
|
],
|
|
},
|
|
zip_safe=False,
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Topic :: Internet :: Proxy Servers',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
'Topic :: System :: Archiving',
|
|
])
|
|
|