From 133a831ab923aec1744862811b21177cc1672e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kowalski?= Date: Fri, 17 Apr 2020 14:27:22 +0200 Subject: [PATCH] =?UTF-8?q?Update=20excluded=20packages=20list=20to=20prop?= =?UTF-8?q?erly=20exclude=20examples=20pack=E2=80=A6=20(#1187)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * examples package will not be installed with graphene --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b336989..ec63b12f 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ setup( "Programming Language :: Python :: 3.8", ], keywords="api graphql protocol rest relay graphene", - packages=find_packages(exclude=["tests", "tests.*", "examples"]), + packages=find_packages(exclude=["tests", "tests.*", "examples*"]), install_requires=[ "graphql-core>=3.1.0b1,<4", "graphql-relay>=3.0,<4",