Exclude tests from package, properly this time

The `exclude` argument to `find_packages` needs an iterable of package
names.

Closes #456 - thanks, @abeyerpath!
This commit is contained in:
abeyerpath 2020-07-24 13:39:53 -07:00 committed by GitHub
commit 6be5654ffa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ setup(
"Issues": "https://github.com/simonw/datasette/issues",
"CI": "https://travis-ci.org/simonw/datasette",
},
packages=find_packages(exclude="tests"),
packages=find_packages(exclude=("tests",)),
package_data={"datasette": ["templates/*.html"]},
include_package_data=True,
install_requires=[