Blob Blame History Raw
From 1a60f395ec314b085bb12e132bf44c2ec8be1663 Mon Sep 17 00:00:00 2001
From: Neal Gompa <ngompa13@gmail.com>
Date: Sun, 4 Oct 2020 13:31:53 -0400
Subject: [PATCH] Drop argparse as a dependency

argparse has been part of the standard library since Python 2.7,
so there's no reason to declare this as a dependency, since it cannot
be satisfied by anyone running a modern Linux distribution including
a supported version of Python.
---
 setup.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/setup.py b/setup.py
index 9578589..032d205 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,6 @@ setup(
   long_description=open('README.md').read(),
   #data_files=[('conf/manatools', ['XXX.yy',]), ],
   install_requires=[
-    "argparse",
     "dbus-python",
     "python-gettext",
     "PyYAML",
-- 
2.26.2