From 12ec8dc007a922a49330e4512737b5beb8eb87b8 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Sun, 26 Apr 2020 11:44:16 +0100 Subject: [PATCH] Don't exclude tests from distribution --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec63b12f..d924f9f4 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=["examples*"]), install_requires=[ "graphql-core>=3.1.0b1,<4", "graphql-relay>=3.0,<4",