From ccdd5f5022b99f49c09d8d980fdfa0dc6c24a23b Mon Sep 17 00:00:00 2001
From: Javi Merino <vicho@debian.org>
Date: Thu, 8 Oct 2015 12:28:07 -0700
Subject: don't require argparse

 It's included in python by default in >= 2.7 and >= 3.2 .  It
 confuses dh_python3 and it's not really needed for Debian, so just
 drop the requiremenet.

Patch-Name: deb_specific__dont_require_argparse.patch
---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 25f5a51..567876d 100644
--- a/setup.py
+++ b/setup.py
@@ -86,8 +86,8 @@ setup(
         "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
     ],
     ext_modules=[getsize],
-    requires=['argparse', 'matplotlib', 'cython'],
-    install_requires=['argparse', 'matplotlib', 'cython'],
+    requires=['matplotlib', 'cython'],
+    install_requires=['matplotlib', 'cython'],
     provides=['memprof'],
     test_suite="testsuite",
 )
