From 775eda0d68c01b90e27b710b835d736dc5fb8ad4 Mon Sep 17 00:00:00 2001 From: "radoslaw.kowalski" Date: Fri, 17 Apr 2020 11:56:01 +0200 Subject: [PATCH] Update excluded packages list to properly exclude examples package * 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",