From b9d3755abda1e40351b8b0d151682f3c5a8cdae5 Mon Sep 17 00:00:00 2001 From: Javi Merino Date: Tue, 5 Jan 2016 15:57:07 +0000 Subject: setup: fix extras_require name a365cf0bc2ea ("setup: install matplotlib and ipython only if we are going to use it with notebooks") added the ability to install more python packages if the user was interested in running trappy in an ipython notebook. However, extras_require was mispelled. Fix it. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c9c0003..43d1eef 100644 --- a/setup.py +++ b/setup.py @@ -69,5 +69,5 @@ setup(name='TRAPpy', "Topic :: Scientific/Engineering :: Visualization" ], install_requires=REQUIRES, - extras_requires=EXTRAS + extras_require=EXTRAS ) -- cgit v1.2.3