From b7ce85a6f3e2583c5cf31e0fac63ff2a88a3b428 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 19 Dec 2018 13:54:02 +0100 Subject: [PATCH] Fix packaging of json schemas --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 614e969a7..dccca8bf0 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def is_new_osx(): return False -PACKAGE_DATA = {"": ["*.pyx", "*.pxd", "*.txt", "*.tokens", ".json"]} +PACKAGE_DATA = {"": ["*.pyx", "*.pxd", "*.txt", "*.tokens", "*.json"]} PACKAGES = find_packages()