Exclude tests from package, properly this time

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

Closes #456 - thanks, @abeyerpath!
pull/910/head
abeyerpath 2020-07-24 13:39:53 -07:00 zatwierdzone przez GitHub
rodzic 028f193dd6
commit 6be5654ffa
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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=[