From 99a825c055c8abe4358064e7cb3c134a75c0cd5d Mon Sep 17 00:00:00 2001 From: Barbara Miller Date: Mon, 11 Sep 2023 16:40:39 -0700 Subject: [PATCH] initial commit, trying trough branch jammy+focal --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index fdebe60..fb10b29 100755 --- a/setup.py +++ b/setup.py @@ -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 @@ -53,7 +53,7 @@ setuptools.setup( license='GPL', packages=['warcprox'], install_requires=deps, - extras_require={'trough': ['trough>=0.1.4',],}, + extras_require={'trough': ['git+https://github.com/internetarchive/trough.git@jammy_focal',],}, setup_requires=['pytest-runner'], tests_require=['mock', 'pytest', 'warcio'], entry_points={ @@ -68,10 +68,10 @@ setuptools.setup( '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',