Update excluded packages list to properly exclude examples package

* examples package will not be installed with graphene
This commit is contained in:
radoslaw.kowalski 2020-04-17 11:56:01 +02:00
parent cb3bfe011f
commit 775eda0d68

View File

@ -80,7 +80,7 @@ setup(
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
], ],
keywords="api graphql protocol rest relay graphene", keywords="api graphql protocol rest relay graphene",
packages=find_packages(exclude=["tests", "tests.*", "examples"]), packages=find_packages(exclude=["tests", "tests.*", "examples*"]),
install_requires=[ install_requires=[
"graphql-core>=3.1.0b1,<4", "graphql-core>=3.1.0b1,<4",
"graphql-relay>=3.0,<4", "graphql-relay>=3.0,<4",