From 614a2d1c4375598a1c458b4fb7ac5b5c1a04b28b Mon Sep 17 00:00:00 2001 From: Ahmet Bakan Date: Sun, 1 Mar 2015 10:10:10 -0800 Subject: [PATCH] Changed `requires` to `install_requires`. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ea036bc..6322e39 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,6 @@ with open('ablog/__init__.py') as inp: with open('README.rst') as inp: long_description = inp.read() - setup( name='ablog', version=__version__, @@ -38,7 +37,7 @@ setup( 'Programming Language :: Python :: 3', ], provides=['ablog ({0:s})'.format(__version__)], - requires=['Werkzeug', 'Sphinx'], + install_requires=['Werkzeug', 'Sphinx'], message_extractors={ 'ablog': [ ('**.html', 'jinja2', None),