1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Remove argparse from install_requires so dh_python2 shipped by
python-defaults (2.7.2-10) won't generate dependencies of the form
"python (>= 2.7) | python-argparse" since anyway only from python 2.7.3~rc2-1
egg-info metadata for argparse are shipped.
Author: Daniele Tricoli <eriol@mornie.org>
Forwarded: not-needed
Last-Update: 2013-08-09
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,6 @@
install_requires = [
"PyStemmer==1.2.0",
- "argparse==1.2.1",
"python-irclib==0.4.8"
],
|