1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From b52f5d5ddbada6222cb96da9cd9ec30dd77ecc3e Mon Sep 17 00:00:00 2001
From: SVN-Git Migration <python-modules-team@lists.alioth.debian.org>
Date: Thu, 8 Oct 2015 13:26:54 -0700
Subject: setup-dont-include-doc-and-examples
Don't install documentation and examples.
Patch-Name: setup-dont-include-doc-and-examples.patch
---
setup.py | 8 --------
1 file changed, 8 deletions(-)
diff --git a/setup.py b/setup.py
index 3a1b2cb1c19d..6877dd20e12f 100644
--- a/setup.py
+++ b/setup.py
@@ -22,14 +22,6 @@ setup(
scripts = [
'scripts/runxlrd.py',
],
- package_data={
- 'xlrd': [
- 'doc/*.htm*',
- # 'doc/*.txt',
- 'examples/*.*',
- ],
-
- },
description = 'Library for developers to extract data from Microsoft Excel (tm) spreadsheet files',
long_description = \
"Extract data from Excel spreadsheets (.xls and .xlsx, versions 2.0 onwards) on any platform. " \
|