Description: Omit the resource data files from Python packaging config.
 .
 Created to avoid Python's Distutils insistence on install of
 arch-independent ‘package_data’ files in ‘/usr/lib/…’. This is a violation
 of FHS, and these files should instead go to ‘/usr/share/…’.
Bug-Debian: http://bugs.debian.org/721676
Author: Ben Finney <bignose@debian.org>
Last-Update: 2016-03-13

diff --git a/setup.py b/setup.py
index 010b5b7..981aef0 100644
--- a/setup.py
+++ b/setup.py
@@ -66,12 +66,6 @@ setup_args = dict(
         'coverage',
     ],
 
-    package_data={
-        'coverage': [
-            'htmlfiles/*.*',
-        ]
-    },
-
     entry_points={
         # Install a script as "coverage", and as "coverage[23]", and as
         # "coverage-2.7" (or whatever).


Local variables:
coding: utf-8
mode: diff
time-stamp-format: "%:y-%02m-%02d"
time-stamp-start: "^Last-Update:[ 	]+"
time-stamp-end: "$"
time-stamp-line-limit: 20
End:
vim: fileencoding=utf-8 filetype=diff :
