From b9af49be6c68d6e551c1ae23132711f22cb7c63c Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 17 Nov 2017 05:26:05 -0800 Subject: [PATCH] Fix case for Sanic dependency On PyPI it has a capital letter: https://pypi.python.org/pypi/Sanic I think this is why the list of "Requires Distributions" on https://pypi.python.org/pypi/datasette links to all of the other dependencies but does not link to Sanic. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dbea708b..1fd3ab6a 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( install_requires=[ 'click==6.7', 'click-default-group==1.2', - 'sanic==0.6.0', + 'Sanic==0.6.0', 'Jinja2==2.10', 'sanic-jinja2==0.5.5', 'hupper==1.0',