From 0e4ff5af0a33ca2766ba448e62935ee48933924b Mon Sep 17 00:00:00 2001 From: Masatoshi Hidaka Date: Fri, 17 Jan 2020 13:36:48 +0900 Subject: [PATCH] Fix "values of 'package_data' dict" must be a list of strings (got '*.js') --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 69abadd5b..bb50091ff 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ python_requires=">=3.6", package_dir={"": "src/graph_transpiler"}, packages=find_packages("src/graph_transpiler"), - package_data={"": "*.js"}, install_requires=['numpy'], + package_data={"": ["*.js"]}, install_requires=['numpy'], url="https://github.com/mil-tokyo/webdnn", description=package_info["description"], author=package_info["author"]["name"],