Skip to content

Commit

Permalink
Attempt to fix rtd build.
Browse files Browse the repository at this point in the history
  • Loading branch information
hellysmile committed Feb 18, 2018
1 parent 197846d commit a27cd53
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ def long_description():
str('django_activeurl.ext'),
]

install_requires = [
str('django'),
str('lxml'),
str('django-classy-tags'),
str('django_appconf'),
]


setup(
name=about['__title__'],
Expand All @@ -57,12 +64,7 @@ def long_description():
author=about['__author__'],
author_email=about['__email__'],
zip_safe=False,
install_requires=[
'django',
'lxml',
'django-classy-tags',
'django_appconf',
],
install_requires=install_requires,
license=about['__license__'],
classifiers=list(filter(None, classifiers.split('\n'))),
keywords=[
Expand Down

0 comments on commit a27cd53

Please sign in to comment.