From 01832c3cc506efcdae237751ddde6a1ac2205e1e Mon Sep 17 00:00:00 2001 From: Barbara Miller Date: Tue, 5 Nov 2024 18:05:51 -0800 Subject: [PATCH] for pypi v.2.6.0 --- __init__.py | 0 pyproject.toml | 28 ++++++++++++++++++++++++++++ setup.py | 2 +- 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 __init__.py create mode 100644 pyproject.toml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..202bf33 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[project] +name = "warcprox" +authors = [ + { name="Noah Levitt", email="nlevitt@archive.org" }, +] +maintainers = [ + { name="Vangelis Banos", email="vangelis@archive.org" }, + { name="Adam Miller", email="adam@archive.org" }, + { name="Barbara Miller", email="barbara@archive.org" }, + { name="Alex Dempsey", email="avdempsey@archive.org" }, +] +description = "WARC writing MITM HTTP/S proxy" +readme = "README.rst" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", +] +dynamic = [ "version", "license", "scripts", "dependencies", "optional-dependencies" ] + +[project.urls] +Homepage = "https://github.com/internetarchive/warcprox" +Issues = "https://github.com/internetarchive/warcprox/issues" + +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index cda7883..c50115c 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ except: setuptools.setup( name='warcprox', - version='2.5.3', + version='2.6.0', description='WARC writing MITM HTTP/S proxy', url='https://github.com/internetarchive/warcprox', author='Noah Levitt',