From 317bb3bc6d774d292e8cdde4e5f8d10ca20735ef Mon Sep 17 00:00:00 2001 From: Christophe Demko Date: Thu, 31 Mar 2016 21:26:00 +0200 Subject: [PATCH] Updating setup.py --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index d7e7239..ff8d86a 100644 --- a/setup.py +++ b/setup.py @@ -104,10 +104,10 @@ # dependencies). You can install these using the following syntax, # for example: # $ pip install -e .[dev,test] - # extras_require={ - # 'dev': ['check-manifest'], - # 'test': ['coverage'], - # }, + extras_require={ + 'dev': ['check-manifest'], + 'test': ['coverage'], + }, # If there are data files included in your packages that need to be # installed, specify them here. If using Python 2.6 or less, then these @@ -115,5 +115,5 @@ package_data={}, setup_requires=['pytest-runner'], - tests_require=['pytest', 'coveralls'], + tests_require=['pytest', 'coverage'], )