Skip to content

Commit 9815d26

Browse files
Prevent including test directory when installing package (#75)
* Prevent including test directory when installing package * chore: include only graphql_server package Co-authored-by: Manuel Bojato <[email protected]>
1 parent 5b7f5de commit 9815d26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"License :: OSI Approved :: MIT License",
7979
],
8080
keywords="api graphql protocol rest",
81-
packages=find_packages(exclude=["tests"]),
81+
packages=find_packages(include=["graphql_server*"]),
8282
install_requires=install_requires,
8383
tests_require=install_all_requires + tests_requires,
8484
extras_require={

0 commit comments

Comments
 (0)