From cbcef2f1733f0afecb1d1d0892da2990dee3a930 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Tue, 14 Jul 2020 01:16:34 +0000 Subject: [PATCH] Add Linux classifier The WARC writing is only tested and known safe on Linux and relies on its behaviour of flock(2) and files opened in append mode (writes always append regardless of the stream position). --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a1e4d54..9aa7033 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ setuptools.setup( 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Operating System :: POSIX :: Linux', ], packages = ['qwarc'], setup_requires = ['setuptools_scm'],