Changed requires to install_requires.

This commit is contained in:
Ahmet Bakan 2015-03-01 10:10:10 -08:00
parent df6eed52fc
commit 614a2d1c43

View file

@ -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),