From 367c077a49699ce822e37ce43432e47ce1d10260 Mon Sep 17 00:00:00 2001 From: sierreis <48896364+sierreis@users.noreply.github.com> Date: Mon, 25 Mar 2019 12:45:43 -0400 Subject: [PATCH] Add static files to MANIFEST.in At the moment, static files are not included in the package data when installing using setuptools. This is necessary for the GraphiQL view. --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 3c3d4f9..4677330 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include README.md LICENSE recursive-include graphene_django/templates * +recursive-include graphene_django/static *