Browse Source

Return a compatible value if there are no package_data to install.

Xavier Ordoquy 10 năm trước cách đây
mục cha
commit
c614515735
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -36,7 +36,7 @@ def get_package_data(package):
     if filepaths:
         return {package: filepaths}
     else:
-        return None
+        return {}
 
 
 def read(fname):