Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'''
setup.py - setuptools installation configuration for warcprox

Copyright (C) 2013-2022 Internet Archive
Copyright (C) 2013-2023 Internet Archive

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
Expand All @@ -27,7 +27,7 @@
'certauth==1.1.6',
'warctools>=4.10.0',
'urlcanon>=0.3.0',
'doublethink>=0.2.0.dev87',
'doublethink @ git+https://github.com/internetarchive/doublethink.git@Py311',
'urllib3>=1.23',
'requests>=2.0.1',
'PySocks>=1.6.8',
Expand All @@ -44,7 +44,7 @@

setuptools.setup(
name='warcprox',
version='2.4.31',
version='2.5',
description='WARC writing MITM HTTP/S proxy',
url='https://github.com/internetarchive/warcprox',
author='Noah Levitt',
Expand All @@ -53,7 +53,7 @@
license='GPL',
packages=['warcprox'],
install_requires=deps,
extras_require={'trough': ['trough>=0.1.4',],},
extras_require={'trough': ['trough @ git+https://github.com/internetarchive/trough.git@jammy_focal',],},
setup_requires=['pytest-runner'],
tests_require=['mock', 'pytest', 'warcio'],
entry_points={
Expand All @@ -68,13 +68,12 @@
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving',
])

2 changes: 1 addition & 1 deletion warcprox/bigtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import threading
import datetime
import doublethink
import rethinkdb as r
from rethinkdb import RethinkDB; r = RethinkDB()
from warcprox.dedup import DedupableMixin

class RethinkCaptures:
Expand Down
2 changes: 1 addition & 1 deletion warcprox/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import json
import logging
import os
import rethinkdb as r
from rethinkdb import RethinkDB; r = RethinkDB()
import sqlite3
import threading
import time
Expand Down